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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 2461043003: Fix for the RedirectTest.ClientServerServer test. (Closed)
Patch Set: More build errors Created 4 years, 1 month 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
Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
index 704539ebcc6367b7bdac0c9f910d34abec2ecd13..295692034e1a6d2608bad178e890d69326a0e52f 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -686,8 +686,10 @@ void FrameLoaderClientImpl::selectorMatchChanged(
DocumentLoader* FrameLoaderClientImpl::createDocumentLoader(
LocalFrame* frame,
const ResourceRequest& request,
- const SubstituteData& data) {
- WebDataSourceImpl* ds = WebDataSourceImpl::create(frame, request, data);
+ const SubstituteData& data,
+ bool clientRedirect) {
+ WebDataSourceImpl* ds =
+ WebDataSourceImpl::create(frame, request, data, clientRedirect);
if (m_webFrame->client())
m_webFrame->client()->didCreateDataSource(m_webFrame, ds);
return ds;

Powered by Google App Engine
This is Rietveld 408576698