aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-02-03 03:32:47 +0800
committerChristian Persch <chpe@src.gnome.org>2005-02-03 03:32:47 +0800
commiteea97b9de2d079295ed6bb2454b5fe367d569b70 (patch)
tree4e09503213f659e5925d4928bcad0c5c19569522 /src/ephy-shell.h
parent2bb88affbb80a7556dfe4d5a0fb194fe4b147c4e (diff)
downloadgsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.tar
gsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.tar.gz
gsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.tar.bz2
gsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.tar.lz
gsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.tar.xz
gsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.tar.zst
gsoc2013-epiphany-eea97b9de2d079295ed6bb2454b5fe367d569b70.zip
Add chrome param to ephy_shell_new_tab_full, and use it in
2005-02-02 Christian Persch <chpe@cvs.gnome.org> * src/ephy-automation.c: (impl_ephy_automation_loadUrlWithStartupId): * src/ephy-shell.c: (ephy_shell_new_window_cb), (ephy_shell_new_tab_full), (ephy_shell_new_tab): * src/ephy-shell.h: Add chrome param to ephy_shell_new_tab_full, and use it in ephy_shell_new_window_cb(). Fixes bug #165566.
Diffstat (limited to 'src/ephy-shell.h')
-rw-r--r--src/ephy-shell.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ephy-shell.h b/src/ephy-shell.h
index 84b86d340..32e5f9383 100644
--- a/src/ephy-shell.h
+++ b/src/ephy-shell.h
@@ -74,13 +74,14 @@ typedef enum
/* Page mode */
EPHY_NEW_TAB_FULLSCREEN_MODE = 1 << 4,
+ EPHY_NEW_TAB_DONT_SHOW_WINDOW = 1 << 5,
/* Tabs */
EPHY_NEW_TAB_APPEND_LAST = 1 << 7,
EPHY_NEW_TAB_APPEND_AFTER = 1 << 8,
EPHY_NEW_TAB_JUMP = 1 << 9,
EPHY_NEW_TAB_IN_NEW_WINDOW = 1 << 10,
- EPHY_NEW_TAB_IN_EXISTING_WINDOW = 1 << 11
+ EPHY_NEW_TAB_IN_EXISTING_WINDOW = 1 << 11,
} EphyNewTabFlags;
struct _EphyShell
@@ -128,6 +129,7 @@ EphyTab *ephy_shell_new_tab_full (EphyShell *shell,
EphyTab *previous_tab,
const char *url,
EphyNewTabFlags flags,
+ EphyEmbedChrome chrome,
guint32 user_time);
GObject *ephy_shell_get_session (EphyShell *shell);