diff options
author | Xan Lopez <xan@src.gnome.org> | 2008-06-30 02:15:48 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2008-06-30 02:15:48 +0800 |
commit | 5aac39ff9672fb14e03ff33b99ab4853955a5592 (patch) | |
tree | bcf4faf72c96f1fb9d59f69e143a410beb84b607 /embed/ephy-base-embed.c | |
parent | a2c6d61b3e04f6c77c9f1ffd853831b51e0a0042 (diff) | |
download | gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.tar gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.tar.gz gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.tar.bz2 gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.tar.lz gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.tar.xz gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.tar.zst gsoc2013-epiphany-5aac39ff9672fb14e03ff33b99ab4853955a5592.zip |
embed: remove ephy_embed_reload.
Use WebKit API directly.
svn path=/trunk/; revision=8303
Diffstat (limited to 'embed/ephy-base-embed.c')
-rw-r--r-- | embed/ephy-base-embed.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/embed/ephy-base-embed.c b/embed/ephy-base-embed.c index 5c2f506e5..28a64008f 100644 --- a/embed/ephy-base-embed.c +++ b/embed/ephy-base-embed.c @@ -1305,8 +1305,10 @@ ephy_base_embed_file_monitor_reload_cb (EphyBaseEmbed *embed) priv->reload_scheduled_id = 0; LOG ("Reloading file '%s'", ephy_embed_get_address (EPHY_EMBED (embed))); - - ephy_embed_reload (EPHY_EMBED (embed), TRUE); + /* FIXME: no way to bypass cache when reloading with WebKit right now. + * Old code did it here. + */ + webkit_web_view_reload (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed)); /* don't run again */ return FALSE; |