diff options
author | Jean-François Rameau <jframeau@cvs.gnome.org> | 2006-06-02 03:35:32 +0800 |
---|---|---|
committer | Jean-François Rameau <jframeau@src.gnome.org> | 2006-06-02 03:35:32 +0800 |
commit | ae4e4736818f442abd435274cb3b75f8da02ad33 (patch) | |
tree | e552affa908143effd9f1fba8993eaa8ecf4e5f6 /embed/ephy-embed-persist.h | |
parent | 5d471eec3390f8f188037ac6a3c87a59aa77ec8e (diff) | |
download | gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.gz gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.bz2 gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.lz gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.xz gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.zst gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.zip |
Don't set cookies from favicon downloads. Bug #337835.
2006-06-01 Jean-François Rameau <jframeau@cvs.gnome.org>
* embed/ephy-embed-persist.h:
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_download):
* embed/mozilla/EphySingle.cpp:
(Init, Detach, ExamineCookies, ExamineResponse, ExamineRequest, Observe):
* embed/mozilla/EphySingle.h:
* embed/mozilla/MozDownload.cpp: (InitiateMozillaDownload):
Don't set cookies from favicon downloads. Bug #337835.
Diffstat (limited to 'embed/ephy-embed-persist.h')
-rw-r--r-- | embed/ephy-embed-persist.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/embed/ephy-embed-persist.h b/embed/ephy-embed-persist.h index 8e60841a3..120104f67 100644 --- a/embed/ephy-embed-persist.h +++ b/embed/ephy-embed-persist.h @@ -50,7 +50,8 @@ typedef enum EPHY_EMBED_PERSIST_ASK_DESTINATION = 1 << 3, EPHY_EMBED_PERSIST_DO_CONVERSION = 1 << 4, EPHY_EMBED_PERSIST_FROM_CACHE = 1 << 5, - EPHY_EMBED_PERSIST_NO_CERTDIALOGS = 1 << 6 + EPHY_EMBED_PERSIST_NO_CERTDIALOGS = 1 << 6, + EPHY_EMBED_PERSIST_NO_COOKIES = 1 << 7 } EphyEmbedPersistFlags; struct _EphyEmbedPersist |