aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2012-12-12 00:51:33 +0800
committerDan Winship <danw@gnome.org>2012-12-12 00:51:33 +0800
commit3cdb5f74351503dbab7b5db82764a2eba80a3a19 (patch)
tree5fc932c6fc8560d8e77a654a283a37ff3d014bce /embed
parentd0f63175cd63c2b118b4b9718ad35dc8aa5c36a4 (diff)
downloadgsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.tar
gsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.tar.gz
gsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.tar.bz2
gsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.tar.lz
gsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.tar.xz
gsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.tar.zst
gsoc2013-epiphany-3cdb5f74351503dbab7b5db82764a2eba80a3a19.zip
ephy-embed: Remove references to SoupPasswordManager
Epiphany gets its http-authentication-password-saving support via WebKit now, so remove the old SoupPasswordManager stuff (which is a no-op in libsoup master anyway).
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-single.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c
index 937364ebc..67cdaac13 100644
--- a/embed/ephy-embed-single.c
+++ b/embed/ephy-embed-single.c
@@ -21,7 +21,6 @@
/* These defines need to go at the top because config.h or ephy-embed-single.h
* may include soup.
*/
-#define LIBSOUP_I_HAVE_READ_BUG_594377_AND_KNOW_SOUP_PASSWORD_MANAGER_MIGHT_GO_AWAY
#define LIBSOUP_USE_UNSTABLE_REQUEST_API
#include "config.h"
@@ -500,15 +499,6 @@ ephy_embed_single_initialize (EphyEmbedSingle *single)
soup_session_add_feature_by_type (session, EPHY_TYPE_REQUEST_ABOUT);
g_object_unref (requester);
-#ifdef SOUP_TYPE_PASSWORD_MANAGER_GNOME
- /* Use GNOME keyring to store passwords. Only add the manager if we
- are not using a private session, otherwise we want any new
- password to expire when we exit *and* we don't want to use any
- existing password in the keyring */
- if (mode != EPHY_EMBED_SHELL_MODE_PRIVATE)
- soup_session_add_feature_by_type (session, SOUP_TYPE_PASSWORD_MANAGER_GNOME);
-#endif
-
/* Initialize the favicon cache. */
favicon_db_path = g_build_filename (g_get_user_data_dir (), g_get_prgname (), NULL);
webkit_favicon_database_set_path (webkit_get_favicon_database (), favicon_db_path);