diff options
author | Xan Lopez <xan@src.gnome.org> | 2008-06-30 15:23:52 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2008-06-30 15:23:52 +0800 |
commit | 0238a377973ad82bd73e4e8f12a291b62359e9c1 (patch) | |
tree | aea3bb8edf48835efa7500883c9e957b37ab1c37 /embed/ephy-embed.c | |
parent | faf45b0b6340ea93e9d4e8cfef7862885fc816c5 (diff) | |
download | gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.tar gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.tar.gz gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.tar.bz2 gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.tar.lz gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.tar.xz gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.tar.zst gsoc2013-epiphany-0238a377973ad82bd73e4e8f12a291b62359e9c1.zip |
embed: remove ephy_embed_get_{next,previous}_history_item.
Use WebKit APIs directly.
svn path=/trunk/; revision=8312
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index fd7e223f6..b8f137f30 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -995,36 +995,6 @@ ephy_embed_get_visibility (EphyEmbed *embed) } /** - * ephy_embed_get_previous_history_item: - * @embed: an #EphyEmbed - * - * Returns the preceding #EphyHistoryItem in the history list. - * - * Return value: the preceding #EphyHistoryItem - **/ -EphyHistoryItem* -ephy_embed_get_previous_history_item (EphyEmbed *embed) -{ - EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - return iface->get_previous_history_item (embed); -} - -/** - * ephy_embed_get_next_history_item: - * @embed: an #EphyEmbed - * - * Returns the succeeding #EphyHistoryItem in the history list. - * - * Return value: the succeeding #EphyHistoryItem - **/ -EphyHistoryItem* -ephy_embed_get_next_history_item (EphyEmbed *embed) -{ - EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - return iface->get_next_history_item (embed); -} - -/** * ephy_embed_go_to_history_item: * @embed: an #EphyEmbed * @history_item: an #EphyHistoryItem |