diff options
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 456706a..67740a6 100644 --- a/webkit/api/src/WebDataSourceImpl.cpp +++ b/webkit/api/src/WebDataSourceImpl.cpp @@ -127,7 +127,7 @@ WebNavigationType WebDataSourceImpl::toWebNavigationType(NavigationType type) } } -const KURL& WebDataSourceImpl::endOfRedirectChain() const +WebURL 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 KURL& url) +void WebDataSourceImpl::appendRedirect(const WebURL& url) { m_redirectChain.append(url); } |