aboutsummaryrefslogtreecommitdiffstats
path: root/embed/webkit
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2007-07-28 05:48:58 +0800
committerXan Lopez <xan@src.gnome.org>2007-07-28 05:48:58 +0800
commit6899e8e28577071c6cb036202d087b558f4fb891 (patch)
tree7870c1918573a8af01d278c8d4e9141ed1186a0e /embed/webkit
parentc75bf8633191306efc4120fd589d0c375f286e71 (diff)
downloadgsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.tar
gsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.tar.gz
gsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.tar.bz2
gsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.tar.lz
gsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.tar.xz
gsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.tar.zst
gsoc2013-epiphany-6899e8e28577071c6cb036202d087b558f4fb891.zip
Implement stop loading method, for some reason can_go methods will fail to
2007-07-28 Xan Lopez <xan@gnome.org> * embed/webkit/webkit-embed.cpp: Implement stop loading method, for some reason can_go methods will fail to link. * src/epiphany.override: Remove mozilla include. svn path=/trunk/; revision=7209
Diffstat (limited to 'embed/webkit')
-rw-r--r--embed/webkit/webkit-embed.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/webkit/webkit-embed.cpp b/embed/webkit/webkit-embed.cpp
index 009706b3e..4f781f25d 100644
--- a/embed/webkit/webkit-embed.cpp
+++ b/embed/webkit/webkit-embed.cpp
@@ -199,17 +199,20 @@ impl_load (EphyEmbed *embed,
static void
impl_stop_load (EphyEmbed *embed)
{
+ webkit_gtk_page_stop_loading (WEBKIT_EMBED (embed)->priv->page);
}
static gboolean
impl_can_go_back (EphyEmbed *embed)
{
+ // return webkit_gtk_page_can_go_backward (WEBKIT_EMBED (embed)->priv->page);
return FALSE;
}
static gboolean
impl_can_go_forward (EphyEmbed *embed)
{
+ // return webkit_gtk_page_can_go_forward (WEBKIT_EMBED (embed)->priv->page);
return FALSE;
}