| 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 =
|
|
|