From f1785bf92adafcf633a22152c4eb38dcba1ab319 Mon Sep 17 00:00:00 2001 From: Gustavo Noronha Silva Date: Wed, 14 Jan 2009 22:52:10 -0200 Subject: 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. --- src/ephy-shell.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/ephy-shell.c') diff --git a/src/ephy-shell.c b/src/ephy-shell.c index b0339207e..1052b59d3 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -520,19 +520,8 @@ ephy_shell_new_tab_full (EphyShell *shell, } else if (flags & EPHY_NEW_TAB_OPEN_PAGE) { - EphyEmbedLoadFlags load_flags = 0; - g_assert (request != NULL); - if (flags & EPHY_NEW_TAB_ALLOW_FIXUP) - { - load_flags = EPHY_EMBED_LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP; - } - else - { - load_flags = EPHY_EMBED_LOAD_FLAGS_NONE; - } - ephy_web_view_load_request (EPHY_WEB_VIEW (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed)), request); is_empty = url_is_empty (webkit_network_request_get_uri (request)); -- cgit