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

Unified Diff: Source/web/WebDataSourceImpl.cpp

Issue 40323004: Add WebDataSource::appendRedirect for cross-process redirects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Original patch Created 7 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 | « Source/web/WebDataSourceImpl.h ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDataSourceImpl.cpp
diff --git a/Source/web/WebDataSourceImpl.cpp b/Source/web/WebDataSourceImpl.cpp
index 95ae7269469589c30ee9e95761e86c34d203bd9e..d53239788d60c3129c0152b91f9da33a7ddb4669 100644
--- a/Source/web/WebDataSourceImpl.cpp
+++ b/Source/web/WebDataSourceImpl.cpp
@@ -81,6 +81,11 @@ WebURL WebDataSourceImpl::unreachableURL() const
return DocumentLoader::unreachableURL();
}
+void WebDataSourceImpl::appendRedirect(const WebURL& url)
+{
+ DocumentLoader::appendRedirect(url);
+}
+
void WebDataSourceImpl::redirectChain(WebVector<WebURL>& result) const
{
result.assign(m_redirectChain);
« no previous file with comments | « Source/web/WebDataSourceImpl.h ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698