aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2013-01-29 04:05:00 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2013-02-08 05:54:58 +0800
commit180ad78567be78007ac26fe5b73b0a2a28c0eb1f (patch)
tree2d0a370577e113ea30c22f29342e1a212cef4a08 /src
parent946292f704d24d3e82761a97bc4666df3458bc5b (diff)
downloadgsoc2013-epiphany-180ad78567be78007ac26fe5b73b0a2a28c0eb1f.tar.gz
gsoc2013-epiphany-180ad78567be78007ac26fe5b73b0a2a28c0eb1f.tar.zst
gsoc2013-epiphany-180ad78567be78007ac26fe5b73b0a2a28c0eb1f.zip
ephy-embed-shell: add EPHY_EMBED_SHELL_MODE_INCOGNITO
Since we need to differenciate between incognito and private mode in order to enable restoring closed tabs only for the latter case. Add a macro for the cases in which either mode should behave in the same way to simplify the change. https://bugzilla.gnome.org/show_bug.cgi?id=128184
Diffstat (limited to 'src')
-rw-r--r--src/ephy-main.c3
-rw-r--r--src/ephy-shell.c2
-rw-r--r--src/pdm-dialog.c5
3 files changed, 4 insertions, 6 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c
index 471ccaeb2..3a464e476 100644
--- a/src/ephy-main.c
+++ b/src/ephy-main.c
@@ -419,8 +419,7 @@ main (int argc,
if (private_instance)
mode = EPHY_EMBED_SHELL_MODE_PRIVATE;
else if (incognito_mode) {
- /* Internally incognito mode is also a private mode. */
- mode = EPHY_EMBED_SHELL_MODE_PRIVATE;
+ mode = EPHY_EMBED_SHELL_MODE_INCOGNITO;
/* Use the right theming. */
g_object_set (gtk_settings_get_default (),
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index 5d7f47cda..f08097422 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -660,7 +660,7 @@ ephy_shell_init (EphyShell *shell)
/* Initialize the favicon cache as early as possible, or further
calls to webkit_web_context_get_favicon_database will fail. */
mode = ephy_embed_shell_get_mode (ephy_embed_shell_get_default ());
- favicon_db_path = g_build_filename (mode == EPHY_EMBED_SHELL_MODE_PRIVATE ?
+ favicon_db_path = g_build_filename (EPHY_EMBED_SHELL_MODE_HAS_PRIVATE_PROFILE (mode) ?
ephy_dot_dir () : g_get_user_cache_dir (),
g_get_prgname (), "icondatabase", NULL);
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index 5243c1517..0b56a2cfd 100644
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -1609,9 +1609,8 @@ pdm_dialog_init (PdmDialog *dialog)
PdmDialogPrivate *priv;
PdmActionInfo *cookies, *passwords;
GtkWidget *window;
- gboolean has_private_profile =
- ephy_embed_shell_get_mode (ephy_embed_shell_get_default ()) == EPHY_EMBED_SHELL_MODE_PRIVATE;
-
+ gboolean has_private_profile =
+ EPHY_EMBED_SHELL_MODE_HAS_PRIVATE_PROFILE (ephy_embed_shell_get_mode (ephy_embed_shell_get_default ()));
priv = dialog->priv = EPHY_PDM_DIALOG_GET_PRIVATE (dialog);