diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-06-30 02:03:40 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-06-30 02:03:40 +0800 |
commit | 5b3154f5ddb95f162389340b178d6fc51b3a3bd7 (patch) | |
tree | 3a8864b23bc42022667951be1aae6374bd0a4419 /embed/ephy-web-view.c | |
parent | 4c444c0f7693b9a0f3058729bea04832b66d6214 (diff) | |
download | gsoc2013-epiphany-5b3154f5ddb95f162389340b178d6fc51b3a3bd7.tar.gz gsoc2013-epiphany-5b3154f5ddb95f162389340b178d6fc51b3a3bd7.tar.zst gsoc2013-epiphany-5b3154f5ddb95f162389340b178d6fc51b3a3bd7.zip |
Always use the EphyEmbedShell to know if we are a private instance
We can now get rid of the EphyFileHelpers method.
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 015a3236a..719db1024 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1873,7 +1873,7 @@ load_status_cb (WebKitWebView *web_view, if (ephy_web_view_get_is_blank (view)) g_object_notify (object, "embed-title"); - if (ephy_has_private_profile () == FALSE && + if (ephy_embed_shell_is_private_instance (embed_shell) == FALSE && g_settings_get_boolean (EPHY_SETTINGS_MAIN, EPHY_PREFS_REMEMBER_PASSWORDS)) _ephy_web_view_hook_into_forms (view); |