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

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

Issue 2461043003: Fix for the RedirectTest.ClientServerServer test. (Closed)
Patch Set: More build error fixes 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..93642d14497a00a543b0158d3ecb7c29a55c078b 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,
+ ClientRedirectPolicy clientRedirectPolicy) {
+ WebDataSourceImpl* ds =
+ WebDataSourceImpl::create(frame, request, data, clientRedirectPolicy);
if (m_webFrame->client())
m_webFrame->client()->didCreateDataSource(m_webFrame, ds);
return ds;
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.h ('k') | third_party/WebKit/Source/web/WebDataSourceImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698