diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 16:37:20 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 16:37:20 +0000 |
commit | 7e45de83658f59c24998c37bf252792dfb31eb43 (patch) | |
tree | 9bff5b72794b2aef52053974e0d4b4364731abb9 /webkit/glue/webframeloaderclient_impl.h | |
parent | 6b606125caa86980e660b441a1a0ca3d4c19bd50 (diff) | |
download | chromium_src-7e45de83658f59c24998c37bf252792dfb31eb43.zip chromium_src-7e45de83658f59c24998c37bf252792dfb31eb43.tar.gz chromium_src-7e45de83658f59c24998c37bf252792dfb31eb43.tar.bz2 |
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
Diffstat (limited to 'webkit/glue/webframeloaderclient_impl.h')
-rw-r--r-- | webkit/glue/webframeloaderclient_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 <wtf/PassOwnPtr.h> #include <wtf/RefPtr.h> -#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<WebKit::WebPluginLoadObserver> 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<WebKit::WebPluginContainerImpl> plugin_widget_; |