diff options
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 48fcee4e9..267b353fc 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -677,81 +677,6 @@ ephy_embed_scroll_pixels (EphyEmbed *embed, } /** - * ephy_embed_shistory_n_items: - * @embed: an #EphyEmbed - * - * Returns the number of items in @embed's history. In other words, returns the - * number of pages @embed has visited. - * - * The number is upper-bound by Mozilla's browser.sessionhistory.max_entries - * preference. - * - * Return value: the number of items in @embed's history - **/ -int -ephy_embed_shistory_n_items (EphyEmbed *embed) -{ - EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - return iface->shistory_n_items (embed); -} - -/** - * ephy_embed_shistory_get_nth: - * @embed: an #EphyEmbed - * @nth: index of the desired page in @embed's browser history - * @is_relative: if %TRUE, add @embed's current history position to @nth - * @url: returned value of the history entry's URL - * @title: returned value of the history entry's title - * - * Fetches the @url and @title of the @nth item in @embed's session history. - * If @is_relative is %TRUE, @nth is an offset from the browser's current - * history position. For example, calling this function with @is_relative %TRUE - * and @nth %0 will return the URL and title of the current page. - **/ -void -ephy_embed_shistory_get_nth (EphyEmbed *embed, - int nth, - gboolean is_relative, - char **url, - char **title) -{ - EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - iface->shistory_get_nth (embed, nth, is_relative, url, title); -} - -/** - * ephy_embed_shistory_get_pos: - * @embed: an #EphyEmbed - * - * Returns @embed's current position in its history. If the user never uses the - * "Back" button, this number will be the same as the return value of - * ephy_embed_shistory_n_items(). - * - * Return value: @embed's current position in its history - **/ -int -ephy_embed_shistory_get_pos (EphyEmbed *embed) -{ - EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - return iface->shistory_get_pos (embed); -} - -/** - * ephy_embed_shistory_go_nth: - * @embed: an #EphyEmbed - * @nth: desired history index - * - * Opens the webpage at location @nth in @embed's history. - **/ -void -ephy_embed_shistory_go_nth (EphyEmbed *embed, - int nth) -{ - EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - iface->shistory_go_nth (embed, nth); -} - -/** * ephy_embed_shistory_copy: * @source: the #EphyEmbed to copy the history from * @dest: the #EphyEmbed to copy the history to |