diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2011-08-26 19:28:09 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 04:49:43 +0800 |
commit | 1e674a63960c512b0d66e987ee29c2d14446bf3c (patch) | |
tree | 51462153ffb3f1b1688cfdfa4eba312e81d3cdab | |
parent | 1721164d2a3573df3681eb944199d036b10f159d (diff) | |
download | gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.tar gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.tar.gz gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.tar.bz2 gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.tar.lz gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.tar.xz gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.tar.zst gsoc2013-epiphany-1e674a63960c512b0d66e987ee29c2d14446bf3c.zip |
Add a EphyBrowseHistory instance to EphyEmbed
-rw-r--r-- | embed/ephy-embed.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index a458e9605..097d3c070 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -36,6 +36,7 @@ #include "ephy-embed-utils.h" #include "ephy-file-helpers.h" #include "ephy-history.h" +#include "ephy-browse-history.h" #include "ephy-prefs.h" #include "ephy-settings.h" #include "ephy-string.h" @@ -70,6 +71,7 @@ struct _EphyEmbedPrivate GtkPaned *paned; WebKitWebView *web_view; EphyHistory *history; + EphyBrowseHistory *browse_history; GtkWidget *inspector_window; GtkWidget *inspector_web_view; GtkWidget *inspector_scrolled_window; @@ -819,6 +821,7 @@ ephy_embed_constructed (GObject *object) ephy_embed_prefs_add_embed (embed); priv->history = EPHY_HISTORY (ephy_embed_shell_get_global_history (ephy_embed_shell_get_default ())); + priv->browse_history = EPHY_BROWSE_HISTORY (ephy_embed_shell_get_global_browse_history (ephy_embed_shell_get_default ())); g_signal_connect (priv->history, "cleared", G_CALLBACK (ephy_embed_history_cleared_cb), |