aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2008-06-30 15:23:47 +0800
committerXan Lopez <xan@src.gnome.org>2008-06-30 15:23:47 +0800
commitfaf45b0b6340ea93e9d4e8cfef7862885fc816c5 (patch)
treeb2ed05f6b20d3d989858d910467e64e422d5ff39 /embed/ephy-embed.c
parent4a90a2c33e4dd205aed50cd89a18bca5a8721995 (diff)
downloadgsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.tar
gsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.tar.gz
gsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.tar.bz2
gsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.tar.lz
gsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.tar.xz
gsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.tar.zst
gsoc2013-epiphany-faf45b0b6340ea93e9d4e8cfef7862885fc816c5.zip
embed: remove ephy_embed_get_{backward,forward}_history.
Use WebKit APIs directly. svn path=/trunk/; revision=8311
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r--embed/ephy-embed.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index 29d7a0859..fd7e223f6 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -995,38 +995,6 @@ ephy_embed_get_visibility (EphyEmbed *embed)
}
/**
- * ephy_embed_get_backward_history:
- * @embed: an #EphyEmbed
- *
- * Returns a #GList of #EphyHistoryItem compromising the
- * history items preceding the current location.
- *
- * Return value: a #GList with the preceding history items
- **/
-GList*
-ephy_embed_get_backward_history (EphyEmbed *embed)
-{
- EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
- return iface->get_backward_history (embed);
-}
-
-/**
- * ephy_embed_get_forward_history:
- * @embed: an #EphyEmbed
- *
- * Returns a #GList of #EphyHistoryItem compromising the
- * history items succeeding the current location.
- *
- * Return value: a #GList with the succeeding history items
- **/
-GList*
-ephy_embed_get_forward_history (EphyEmbed *embed)
-{
- EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
- return iface->get_forward_history (embed);
-}
-
-/**
* ephy_embed_get_previous_history_item:
* @embed: an #EphyEmbed
*