aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed.c4
-rw-r--r--embed/ephy-web-view.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index a58e83f50..1c7505798 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -267,7 +267,7 @@ restore_zoom_level (EphyEmbed *embed,
/* restore zoom level */
if (ephy_embed_utils_address_has_web_scheme (address)) {
ephy_history_service_get_host_for_url (embed->priv->history_service,
- address,
+ address, NULL,
(EphyHistoryJobCallback)get_host_for_url_cb, embed);
}
}
@@ -365,7 +365,7 @@ zoom_changed_cb (WebKitWebView *web_view,
if (ephy_embed_utils_address_has_web_scheme (address)) {
ephy_history_service_set_url_zoom_level (embed->priv->history_service,
address, zoom,
- NULL, NULL);
+ NULL, NULL, NULL);
}
g_free (address);
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c
index 2295e6974..5951dc2cf 100644
--- a/embed/ephy-web-view.c
+++ b/embed/ephy-web-view.c
@@ -1084,7 +1084,7 @@ title_changed_cb (WebKitWebView *web_view,
ephy_web_view_set_title (EPHY_WEB_VIEW (web_view), title);
if (uri && title)
- ephy_history_service_set_url_title (history, uri, title, NULL, NULL);
+ ephy_history_service_set_url_title (history, uri, title, NULL, NULL, NULL);
g_free (title);