aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-frecent-store.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-09-07 15:17:08 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2012-09-10 13:14:27 +0800
commitc81e0a41799e891ae7cd73fb074af1956af6d9e0 (patch)
tree6a4503343013ef2aff72f09404d5d826e9cd3881 /lib/widgets/ephy-frecent-store.c
parent399c91bc8724e0ca26370d7552b841c0669be87d (diff)
downloadgsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.tar
gsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.tar.gz
gsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.tar.bz2
gsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.tar.lz
gsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.tar.xz
gsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.tar.zst
gsoc2013-epiphany-c81e0a41799e891ae7cd73fb074af1956af6d9e0.zip
Use the new EphyHistoryService::urls-visited signal
Since both the frecent store and the history window don't need to be updated immediately after a url is visited, we can use ::urls-visited instead. The advantage of this is that we reduce considerably the load when updating both models when loading many pages at the time, specially during startup. https://bugzilla.gnome.org/show_bug.cgi?id=683550
Diffstat (limited to 'lib/widgets/ephy-frecent-store.c')
-rw-r--r--lib/widgets/ephy-frecent-store.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/widgets/ephy-frecent-store.c b/lib/widgets/ephy-frecent-store.c
index bf3d9ec91..8ea1a489b 100644
--- a/lib/widgets/ephy-frecent-store.c
+++ b/lib/widgets/ephy-frecent-store.c
@@ -129,10 +129,8 @@ ephy_frecent_store_fetch_urls (EphyFrecentStore *store,
}
static gboolean
-on_visit_url_cb (EphyHistoryService *service,
- char *url,
- EphyHistoryPageVisitType visit_type,
- EphyFrecentStore *store)
+on_urls_visited_cb (EphyHistoryService *service,
+ EphyFrecentStore *store)
{
ephy_frecent_store_fetch_urls (store, service);
@@ -254,8 +252,8 @@ setup_history_service (EphyFrecentStore *store)
ephy_frecent_store_fetch_urls (store, service);
- g_signal_connect_after (service, "visit-url",
- G_CALLBACK (on_visit_url_cb), store);
+ g_signal_connect (service, "urls-visited",
+ G_CALLBACK (on_urls_visited_cb), store);
g_signal_connect (service, "cleared",
G_CALLBACK (on_cleared_cb), store);
g_signal_connect (service, "url-title-changed",