diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 21:23:12 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 21:23:12 +0000 |
commit | 258fea3d05ccbb0c44b48ef6b2d06efdad5fbaca (patch) | |
tree | 7ab303890696bef9ac6b9503405c14740c5fdd61 /webkit/api/src/WebDataSourceImpl.cpp | |
parent | abf7601f7c535a55dc3f85ce2770939aed639f8f (diff) | |
download | chromium_src-258fea3d05ccbb0c44b48ef6b2d06efdad5fbaca.zip chromium_src-258fea3d05ccbb0c44b48ef6b2d06efdad5fbaca.tar.gz chromium_src-258fea3d05ccbb0c44b48ef6b2d06efdad5fbaca.tar.bz2 |
Convert types in WebFrameLoaderClientImpl in preparation for moving
this class into the WebKit API implementation.
This is a redo of r28545, which was reverted in r28552.
TBR=dglazkov
BUG=10034
TEST=none
Review URL: http://codereview.chromium.org/261047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28599 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/api/src/WebDataSourceImpl.cpp')
-rw-r--r-- | webkit/api/src/WebDataSourceImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/api/src/WebDataSourceImpl.cpp b/webkit/api/src/WebDataSourceImpl.cpp index 67740a6..456706a 100644 --- a/webkit/api/src/WebDataSourceImpl.cpp +++ b/webkit/api/src/WebDataSourceImpl.cpp @@ -127,7 +127,7 @@ WebNavigationType WebDataSourceImpl::toWebNavigationType(NavigationType type) } } -WebURL WebDataSourceImpl::endOfRedirectChain() const +const KURL& WebDataSourceImpl::endOfRedirectChain() const { ASSERT(!m_redirectChain.isEmpty()); return m_redirectChain.last(); @@ -138,7 +138,7 @@ void WebDataSourceImpl::clearRedirectChain() m_redirectChain.clear(); } -void WebDataSourceImpl::appendRedirect(const WebURL& url) +void WebDataSourceImpl::appendRedirect(const KURL& url) { m_redirectChain.append(url); } |