diff options
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index cb513f95c..b12a9c732 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -385,11 +385,10 @@ ephy_embed_get_title (EphyEmbed *embed, gresult ephy_embed_get_location (EphyEmbed *embed, gboolean toplevel, - gboolean requested, char **location) { EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); - return klass->get_location (embed, toplevel, requested, location); + return klass->get_location (embed, toplevel, location); } gresult @@ -410,22 +409,6 @@ ephy_embed_copy_page (EphyEmbed *dest, } gresult -ephy_embed_grab_focus (EphyEmbed *embed) -{ - EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); - return klass->grab_focus (embed); -} - -gresult -ephy_embed_get_link_tags (EphyEmbed *embed, - const char *link_type, - GList **tags) -{ - EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); - return klass->get_link_tags (embed, link_type, tags); -} - -gresult ephy_embed_zoom_set (EphyEmbed *embed, int zoom, gboolean reflow) @@ -535,22 +518,6 @@ ephy_embed_shistory_copy (EphyEmbed *source, } gresult -ephy_embed_scroll (EphyEmbed *embed, - EmbedScrollDirection direction) -{ - EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); - return klass->scroll (embed, direction); -} - -gresult -ephy_embed_fine_scroll (EphyEmbed *embed, - int horiz, int vert) -{ - EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); - return klass->fine_scroll (embed, horiz, vert); -} - -gresult ephy_embed_get_security_level (EphyEmbed *embed, EmbedSecurityLevel *level, char **description) |