summaryrefslogtreecommitdiffstats
path: root/webkit/api/src/WebDataSourceImpl.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-09 17:08:15 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-09 17:08:15 +0000
commitcd4a83858ee51f7c8a0f9afb0f378b5bbd4e5098 (patch)
treeaadc03ffc9bd4fbd721421c16bac4658889d53ce /webkit/api/src/WebDataSourceImpl.h
parent82a7723b351f17d5caf5ade1c2cd4ec645125c8b (diff)
downloadchromium_src-cd4a83858ee51f7c8a0f9afb0f378b5bbd4e5098.zip
chromium_src-cd4a83858ee51f7c8a0f9afb0f378b5bbd4e5098.tar.gz
chromium_src-cd4a83858ee51f7c8a0f9afb0f378b5bbd4e5098.tar.bz2
Reverting 28545.
Review URL: http://codereview.chromium.org/272011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28552 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/api/src/WebDataSourceImpl.h')
-rw-r--r--webkit/api/src/WebDataSourceImpl.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/webkit/api/src/WebDataSourceImpl.h b/webkit/api/src/WebDataSourceImpl.h
index 645e683..2e3e9c8 100644
--- a/webkit/api/src/WebDataSourceImpl.h
+++ b/webkit/api/src/WebDataSourceImpl.h
@@ -39,7 +39,6 @@
#include "WrappedResourceResponse.h"
#include "DocumentLoader.h"
-#include "KURL.h"
#include <wtf/PassOwnPtr.h>
#include <wtf/OwnPtr.h>
#include <wtf/Vector.h>
@@ -73,9 +72,9 @@ namespace WebKit {
static WebNavigationType toWebNavigationType(WebCore::NavigationType type);
bool hasRedirectChain() const { return !m_redirectChain.isEmpty(); }
- const WebCore::KURL& endOfRedirectChain() const;
+ WebURL endOfRedirectChain() const;
void clearRedirectChain();
- void appendRedirect(const WebCore::KURL& url);
+ void appendRedirect(const WebURL& url);
PassOwnPtr<WebPluginLoadObserver> releasePluginLoadObserver() { return m_pluginLoadObserver.release(); }
static void setNextPluginLoadObserver(PassOwnPtr<WebPluginLoadObserver>);
@@ -93,7 +92,7 @@ namespace WebKit {
// Lists all intermediate URLs that have redirected for the current provisional load.
// See WebFrameLoaderClient::dispatchDidReceiveServerRedirectForProvisionalLoad for a
// description of who modifies this when to keep it up to date.
- Vector<WebCore::KURL> m_redirectChain;
+ Vector<WebURL> m_redirectChain;
OwnPtr<ExtraData> m_extraData;
OwnPtr<WebPluginLoadObserver> m_pluginLoadObserver;