aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.c
diff options
context:
space:
mode:
authorGustavo Noronha Silva <gns@gnome.org>2009-01-15 08:52:10 +0800
committerGustavo Noronha Silva <kov@debian.org>2009-05-30 00:15:59 +0800
commitf1785bf92adafcf633a22152c4eb38dcba1ab319 (patch)
tree958c2d75236d84172016efe042f84c5da84fd85d /embed/ephy-embed.c
parent0ce6fe842a2fc4c3155452f69247cdda97ab09d1 (diff)
downloadgsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar
gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar.gz
gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar.bz2
gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar.lz
gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar.xz
gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar.zst
gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.zip
Remove LoadFlags
They were used, it seems, to decide whether to allow Gecko to "fix" the URL. WebKit has no such facility, and we are already doing our own handling of URI normalization.
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r--embed/ephy-embed.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index bb1cc3bd1..9243075fe 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -368,7 +368,6 @@ ephy_embed_load_url (EphyEmbed *embed,
* ephy_embed_load:
* @embed: an #EphyEmbed
* @url: an URL
- * @flags: flags modifying load behaviour
* @previous_embed: the referrer embed or %NULL
*
* Loads a new web page in @embed.
@@ -376,11 +375,10 @@ ephy_embed_load_url (EphyEmbed *embed,
void
ephy_embed_load (EphyEmbed *embed,
const char *url,
- EphyEmbedLoadFlags flags,
EphyEmbed *referring_embed)
{
EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
- iface->load (embed, url, flags, referring_embed);
+ iface->load (embed, url, referring_embed);
}
/**