aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-cookie-manager.h
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2008-12-12 08:09:41 +0800
committerXan Lopez <xan@src.gnome.org>2008-12-12 08:09:41 +0800
commitc4d95ec8b49d437f3372390f1662c67bfd56b64b (patch)
treeae0e087b41c9850e43b322e01bd1fe03fe142073 /embed/ephy-cookie-manager.h
parentd9316c22dde31d8fe2907ca30f23532412363d01 (diff)
downloadgsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.tar
gsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.tar.gz
gsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.tar.bz2
gsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.tar.lz
gsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.tar.xz
gsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.tar.zst
gsoc2013-epiphany-c4d95ec8b49d437f3372390f1662c67bfd56b64b.zip
Port ephy to use libsoup for cookies.
svn path=/trunk/; revision=8632
Diffstat (limited to 'embed/ephy-cookie-manager.h')
-rw-r--r--embed/ephy-cookie-manager.h105
1 files changed, 0 insertions, 105 deletions
diff --git a/embed/ephy-cookie-manager.h b/embed/ephy-cookie-manager.h
deleted file mode 100644
index 58d8788bd..000000000
--- a/embed/ephy-cookie-manager.h
+++ /dev/null
@@ -1,105 +0,0 @@
- /*
- * Copyright © 2003 Marco Pesenti Gritti
- * Copyright © 2003 Christian Persch
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $Id$
- */
-
-#if !defined (__EPHY_EPIPHANY_H_INSIDE__) && !defined (EPIPHANY_COMPILATION)
-#error "Only <epiphany/epiphany.h> can be included directly."
-#endif
-
-#ifndef EPHY_COOKIE_MANAGER_H
-#define EPHY_COOKIE_MANAGER_H
-
-#include <glib-object.h>
-#include <glib.h>
-#include <time.h>
-
-G_BEGIN_DECLS
-
-#define EPHY_TYPE_COOKIE_MANAGER (ephy_cookie_manager_get_type ())
-#define EPHY_COOKIE_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_COOKIE_MANAGER, EphyCookieManager))
-#define EPHY_COOKIE_MANAGER_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_COOKIE_MANAGER, EphyCookieManagerIface))
-#define EPHY_IS_COOKIE_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_COOKIE_MANAGER))
-#define EPHY_IS_COOKIE_MANAGER_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_COOKIE_MANAGER))
-#define EPHY_COOKIE_MANAGER_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EPHY_TYPE_COOKIE_MANAGER, EphyCookieManagerIface))
-
-#define EPHY_TYPE_COOKIE (ephy_cookie_get_type ())
-
-typedef struct _EphyCookieManager EphyCookieManager;
-typedef struct _EphyCookieManagerIface EphyCookieManagerIface;
-
-typedef struct
-{
- char *name;
- char *value;
- char *domain;
- char *path;
- time_t expires;
- glong real_expires;
- guint is_secure : 1;
- guint is_session : 1;
- guint is_http_only : 1;
-} EphyCookie;
-
-struct _EphyCookieManagerIface
-{
- GTypeInterface base_iface;
-
- /* Signals */
- void (* added) (EphyCookieManager *manager,
- EphyCookie *cookie);
- void (* changed) (EphyCookieManager *manager,
- EphyCookie *cookie);
- void (* deleted) (EphyCookieManager *manager,
- EphyCookie *cookie);
- void (* rejected) (EphyCookieManager *manager,
- const char *url);
- void (* cleared) (EphyCookieManager *manager);
-
- /* Methods */
- GList * (* list) (EphyCookieManager *manager);
- void (* remove) (EphyCookieManager *manager,
- const EphyCookie *cookie);
- void (* clear) (EphyCookieManager *manager);
-};
-
-/* EphyCookie */
-
-GType ephy_cookie_get_type (void);
-
-EphyCookie *ephy_cookie_new (void);
-
-EphyCookie *ephy_cookie_copy (const EphyCookie *cookie);
-
-void ephy_cookie_free (EphyCookie *cookie);
-
-/* EphyCookieManager */
-
-GType ephy_cookie_manager_get_type (void);
-
-GList * ephy_cookie_manager_list_cookies (EphyCookieManager *manager);
-
-void ephy_cookie_manager_remove_cookie (EphyCookieManager *manager,
- const EphyCookie *cookie);
-
-void ephy_cookie_manager_clear (EphyCookieManager *manager);
-
-G_END_DECLS
-
-#endif