From 7e45de83658f59c24998c37bf252792dfb31eb43 Mon Sep 17 00:00:00 2001 From: "darin@chromium.org" Date: Fri, 9 Oct 2009 16:37:20 +0000 Subject: Convert types in WebFrameLoaderClientImpl in preparation for moving this class into the WebKit API implementation. R=dglazkov BUG=10034 TEST=none Review URL: http://codereview.chromium.org/273003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28545 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/webframeloaderclient_impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'webkit/glue/webframeloaderclient_impl.h') diff --git a/webkit/glue/webframeloaderclient_impl.h b/webkit/glue/webframeloaderclient_impl.h index becfab8..aad5d8f 100644 --- a/webkit/glue/webframeloaderclient_impl.h +++ b/webkit/glue/webframeloaderclient_impl.h @@ -6,10 +6,10 @@ #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H_ #include "FrameLoaderClient.h" +#include "KURL.h" #include #include -#include "googleurl/src/gurl.h" #include "webkit/api/public/WebNavigationPolicy.h" #include "webkit/glue/webview_delegate.h" @@ -209,7 +209,7 @@ class WebFrameLoaderClient : public WebCore::FrameLoaderClient { WebKit::WebNavigationPolicy* policy); // Called when a dummy back-forward navigation is intercepted. - void HandleBackForwardNavigation(const GURL&); + void HandleBackForwardNavigation(const WebCore::KURL&); PassOwnPtr GetPluginLoadObserver(); @@ -228,8 +228,8 @@ class WebFrameLoaderClient : public WebCore::FrameLoaderClient { // and the dest URL matches that load, we know that it was the result of a // previous client redirect and the source should be added as a redirect. // Both should be empty if unused. - GURL expected_client_redirect_src_; - GURL expected_client_redirect_dest_; + WebCore::KURL expected_client_redirect_src_; + WebCore::KURL expected_client_redirect_dest_; // Contains a pointer to the plugin widget. WTF::RefPtr plugin_widget_; -- cgit v1.1