Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: webkit/api/src/WebDataSourceImpl.h

Issue 273003: Convert types in WebFrameLoaderClientImpl in preparation for moving... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/api/src/WebDataSourceImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebDataSourceImpl.h
===================================================================
--- webkit/api/src/WebDataSourceImpl.h (revision 28523)
+++ webkit/api/src/WebDataSourceImpl.h (working copy)
@@ -39,6 +39,7 @@
#include "WrappedResourceResponse.h"
#include "DocumentLoader.h"
+#include "KURL.h"
#include <wtf/PassOwnPtr.h>
#include <wtf/OwnPtr.h>
#include <wtf/Vector.h>
@@ -72,9 +73,9 @@
static WebNavigationType toWebNavigationType(WebCore::NavigationType type);
bool hasRedirectChain() const { return !m_redirectChain.isEmpty(); }
- WebURL endOfRedirectChain() const;
+ const WebCore::KURL& endOfRedirectChain() const;
void clearRedirectChain();
- void appendRedirect(const WebURL& url);
+ void appendRedirect(const WebCore::KURL& url);
PassOwnPtr<WebPluginLoadObserver> releasePluginLoadObserver() { return m_pluginLoadObserver.release(); }
static void setNextPluginLoadObserver(PassOwnPtr<WebPluginLoadObserver>);
@@ -92,7 +93,7 @@
// 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<WebURL> m_redirectChain;
+ Vector<WebCore::KURL> m_redirectChain;
OwnPtr<ExtraData> m_extraData;
OwnPtr<WebPluginLoadObserver> m_pluginLoadObserver;
« no previous file with comments | « no previous file | webkit/api/src/WebDataSourceImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698