diff options
author | Gustavo Noronha Silva <gns@gnome.org> | 2009-01-15 08:52:10 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <kov@debian.org> | 2009-05-30 00:15:59 +0800 |
commit | f1785bf92adafcf633a22152c4eb38dcba1ab319 (patch) | |
tree | 958c2d75236d84172016efe042f84c5da84fd85d /embed/ephy-embed.h | |
parent | 0ce6fe842a2fc4c3155452f69247cdda97ab09d1 (diff) | |
download | gsoc2013-epiphany-f1785bf92adafcf633a22152c4eb38dcba1ab319.tar.gz 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.h')
-rw-r--r-- | embed/ephy-embed.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 3b6e03cb6..8809bf6f5 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -66,12 +66,6 @@ typedef enum EPHY_EMBED_CHROME_BOOKMARKSBAR = 1 << 3 } EphyEmbedChrome; -typedef enum -{ - EPHY_EMBED_LOAD_FLAGS_NONE = 1 << 0, - EPHY_EMBED_LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP = 1 << 1, -} EphyEmbedLoadFlags; - #define EPHY_EMBED_CHROME_ALL (EPHY_EMBED_CHROME_MENUBAR | \ EPHY_EMBED_CHROME_TOOLBAR | \ EPHY_EMBED_CHROME_STATUSBAR | \ @@ -164,7 +158,6 @@ struct _EphyEmbedIface const char *url); void (* load) (EphyEmbed *embed, const char *url, - EphyEmbedLoadFlags flags, EphyEmbed *referring_embed); gboolean (* can_go_up) (EphyEmbed *embed); GSList * (* get_go_up_list) (EphyEmbed *embed); @@ -222,7 +215,6 @@ void ephy_embed_load_url (EphyEmbed *embed, const char *url); void ephy_embed_load (EphyEmbed *embed, const char *url, - EphyEmbedLoadFlags flags, EphyEmbed *referring_embed); const char *ephy_embed_get_title (EphyEmbed *embed); |