| Index: third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| index 9484ef33df18af1cf827b7452e145e91a9b57fa2..50c422918d114497f7b465cff3c06fae4d127ee6 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| @@ -53,7 +53,6 @@
|
| #include "core/loader/FrameLoaderClient.h"
|
| #include "core/loader/LinkLoader.h"
|
| #include "core/loader/MixedContentChecker.h"
|
| -#include "core/loader/NetworkHintsInterface.h"
|
| #include "core/loader/PingLoader.h"
|
| #include "core/loader/ProgressTracker.h"
|
| #include "core/loader/appcache/ApplicationCacheHost.h"
|
| @@ -315,7 +314,7 @@ void FrameFetchContext::dispatchDidReceiveResponse(unsigned long identifier, con
|
| // When response is received with a provisional docloader, the resource haven't committed yet, and we cannot load resources, only preconnect.
|
| resourceLoadingPolicy = LinkLoader::DoNotLoadResources;
|
| }
|
| - LinkLoader::loadLinksFromHeader(response.httpHeaderField(HTTPNames::Link), response.url(), frame()->document(), NetworkHintsInterfaceImpl(), resourceLoadingPolicy, nullptr);
|
| + LinkLoader::loadLinksFromHeader(response.httpHeaderField(HTTPNames::Link), response.url(), frame()->document(), resourceLoadingPolicy, nullptr);
|
|
|
| if (response.hasMajorCertificateErrors())
|
| MixedContentChecker::handleCertificateError(frame(), response, frameType, requestContext);
|
|
|