aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2013-02-14 20:19:50 +0800
committerXan Lopez <xan@igalia.com>2013-02-14 20:19:50 +0800
commit238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1 (patch)
tree700854c0c806d72d5fa84dc452cb24adef1d0c5f
parent1aa183817b46cb7ab130e8d8803cf4e7ca3713f3 (diff)
downloadgsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.tar
gsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.tar.gz
gsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.tar.bz2
gsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.tar.lz
gsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.tar.xz
gsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.tar.zst
gsoc2013-epiphany-238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1.zip
ephy-shell: remove some leftovers from the new-window removal
-rw-r--r--src/ephy-shell.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index ebdd48fd0..ee760e104 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -63,7 +63,6 @@ struct _EphyShellPrivate {
GObject *prefs_dialog;
GList *del_on_exit;
EphyShellStartupContext *startup_context;
- guint embed_single_connected : 1;
guint open_uris_idle_id;
};
@@ -73,7 +72,6 @@ static void ephy_shell_class_init (EphyShellClass *klass);
static void ephy_shell_init (EphyShell *shell);
static void ephy_shell_dispose (GObject *object);
static void ephy_shell_finalize (GObject *object);
-static GObject *impl_get_embed_single (EphyEmbedShell *embed_shell);
G_DEFINE_TYPE (EphyShell, ephy_shell, EPHY_TYPE_EMBED_SHELL)
@@ -492,7 +490,6 @@ ephy_shell_class_init (EphyShellClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GApplicationClass *application_class = G_APPLICATION_CLASS (klass);
- EphyEmbedShellClass *embed_shell_class = EPHY_EMBED_SHELL_CLASS (klass);
object_class->dispose = ephy_shell_dispose;
object_class->finalize = ephy_shell_finalize;
@@ -503,69 +500,9 @@ ephy_shell_class_init (EphyShellClass *klass)
application_class->before_emit = ephy_shell_before_emit;
application_class->add_platform_data = ephy_shell_add_platform_data;
- embed_shell_class->get_embed_single = impl_get_embed_single;
-
g_type_class_add_private (object_class, sizeof(EphyShellPrivate));
}
-static EphyEmbed *
-ephy_shell_new_window_cb (EphyEmbedSingle *single,
- EphyEmbed *parent_embed,
- EphyWebViewChrome chromemask,
- EphyShell *shell)
-{
- GtkWidget *parent = NULL;
- gboolean is_popup;
- EphyNewTabFlags flags = EPHY_NEW_TAB_DONT_SHOW_WINDOW |
- EPHY_NEW_TAB_APPEND_LAST |
- EPHY_NEW_TAB_IN_NEW_WINDOW |
- EPHY_NEW_TAB_JUMP;
-
- LOG ("ephy_shell_new_window_cb tab chrome %d", chromemask);
-
- if (g_settings_get_boolean (EPHY_SETTINGS_LOCKDOWN,
- EPHY_PREFS_LOCKDOWN_JAVASCRIPT_CHROME))
- chromemask = EPHY_WEB_VIEW_CHROME_ALL;
-
- if (parent_embed != NULL) {
- /* this will either be a EphyWindow, or the embed itself
- * (in case it's about to be destroyed, which means it's already
- * removed from its tab)
- */
- parent = gtk_widget_get_toplevel (GTK_WIDGET (parent_embed));
- }
-
- /* Any window opened with a toolbar is *not* a popup.
- */
- is_popup = (chromemask & EPHY_WEB_VIEW_CHROME_TOOLBAR) == 0;
-
- return ephy_shell_new_tab_full
- (shell,
- EPHY_IS_WINDOW (parent) ? EPHY_WINDOW (parent) : NULL,
- NULL, NULL, flags, chromemask, is_popup, 0);
-}
-
-static GObject*
-impl_get_embed_single (EphyEmbedShell *embed_shell)
-{
- EphyShell *shell = EPHY_SHELL (embed_shell);
- EphyShellPrivate *priv = shell->priv;
- GObject *embed_single;
-
- embed_single = EPHY_EMBED_SHELL_CLASS (ephy_shell_parent_class)->get_embed_single (embed_shell);
-
- if (embed_single != NULL &&
- priv->embed_single_connected == FALSE) {
- g_signal_connect_object (embed_single, "new-window",
- G_CALLBACK (ephy_shell_new_window_cb),
- shell, G_CONNECT_AFTER);
-
- priv->embed_single_connected = TRUE;
- }
-
- return embed_single;
-}
-
#ifdef HAVE_WEBKIT2
static void
download_started_cb (WebKitWebContext *web_context,