| Index: third_party/WebKit/Source/core/html/parser/ResourcePreloader.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/ResourcePreloader.cpp b/third_party/WebKit/Source/core/html/parser/ResourcePreloader.cpp
|
| index 48bb7aee026ab4412557065e1bf99c8555e8430e..2638c1f55a1e27aebebd28e8e01a0d25a7355d38 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/ResourcePreloader.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/ResourcePreloader.cpp
|
| @@ -3,18 +3,16 @@
|
| // found in the LICENSE file.
|
|
|
| #include "core/html/parser/ResourcePreloader.h"
|
| -#include "core/loader/NetworkHintsInterface.h"
|
|
|
| namespace blink {
|
|
|
| void ResourcePreloader::takeAndPreload(PreloadRequestStream& r)
|
| {
|
| PreloadRequestStream requests;
|
| - NetworkHintsInterfaceImpl networkHintsInterface;
|
| requests.swap(r);
|
|
|
| for (PreloadRequestStream::iterator it = requests.begin(); it != requests.end(); ++it)
|
| - preload(std::move(*it), networkHintsInterface);
|
| + preload(std::move(*it));
|
| }
|
|
|
| } // namespace blink
|
|
|