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

Unified Diff: third_party/WebKit/Source/core/loader/FrameFetchContextTest.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/core/loader/FrameFetchContextTest.cpp
diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
index 7a5cc3a54e73002ea5e7640f34c445ff28282d48..aa80523b49eb897420c29dc71a2e7daf11ef057e 100644
--- a/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
+++ b/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
@@ -85,7 +85,7 @@ class FrameFetchContextTest : public ::testing::Test {
dummyPageHolder->page().setDeviceScaleFactor(1.0);
documentLoader = DocumentLoader::create(
&dummyPageHolder->frame(), ResourceRequest("http://www.example.com"),
- SubstituteData());
+ SubstituteData(), false);
document = &dummyPageHolder->document();
fetchContext =
static_cast<FrameFetchContext*>(&documentLoader->fetcher()->context());
@@ -112,7 +112,7 @@ class FrameFetchContextTest : public ::testing::Test {
childFrame->init();
childDocumentLoader = DocumentLoader::create(
childFrame.get(), ResourceRequest("http://www.example.com"),
- SubstituteData());
+ SubstituteData(), false);
childDocument = childFrame->document();
FrameFetchContext* childFetchContext = static_cast<FrameFetchContext*>(
&childDocumentLoader->fetcher()->context());
@@ -151,7 +151,7 @@ class FrameFetchContextDisplayedCertificateErrorsTest
dummyPageHolder->page().setDeviceScaleFactor(1.0);
documentLoader = DocumentLoader::create(&dummyPageHolder->frame(),
ResourceRequest(mainResourceUrl),
- SubstituteData());
+ SubstituteData(), false);
document = &dummyPageHolder->document();
document->setURL(mainResourceUrl);
fetchContext =

Powered by Google App Engine
This is Rietveld 408576698