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

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

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 | « webkit/api/src/WebDataSourceImpl.h ('k') | webkit/glue/chrome_client_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebDataSourceImpl.cpp
===================================================================
--- webkit/api/src/WebDataSourceImpl.cpp (revision 28523)
+++ webkit/api/src/WebDataSourceImpl.cpp (working copy)
@@ -127,7 +127,7 @@
}
}
-WebURL WebDataSourceImpl::endOfRedirectChain() const
+const KURL& WebDataSourceImpl::endOfRedirectChain() const
{
ASSERT(!m_redirectChain.isEmpty());
return m_redirectChain.last();
@@ -138,7 +138,7 @@
m_redirectChain.clear();
}
-void WebDataSourceImpl::appendRedirect(const WebURL& url)
+void WebDataSourceImpl::appendRedirect(const KURL& url)
{
m_redirectChain.append(url);
}
« no previous file with comments | « webkit/api/src/WebDataSourceImpl.h ('k') | webkit/glue/chrome_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698