Index: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp |
index 3976a5982562c857f8bef8ab7bfbf85fbf0d45c0..6a1f93947fa7e6393bd91217432e2249448d0cfe 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp |
@@ -49,7 +49,6 @@ |
#include "core/inspector/ConsoleMessage.h" |
#include "core/loader/FrameLoader.h" |
#include "core/loader/FrameLoaderClient.h" |
-#include "core/loader/NetworkHintsInterface.h" |
#include "core/style/StyleInheritedData.h" |
#include "platform/ContentType.h" |
#include "platform/Histogram.h" |
@@ -209,7 +208,7 @@ bool HTMLLinkElement::shouldLoadLink() |
bool HTMLLinkElement::loadLink(const String& type, const String& as, const String& media, const KURL& url) |
{ |
- return m_linkLoader->loadLink(m_relAttribute, crossOriginAttributeValue(fastGetAttribute(HTMLNames::crossoriginAttr)), type, as, media, url, document(), NetworkHintsInterfaceImpl()); |
+ return m_linkLoader->loadLink(m_relAttribute, crossOriginAttributeValue(fastGetAttribute(HTMLNames::crossoriginAttr)), type, as, media, url, document()); |
} |
LinkResource* HTMLLinkElement::linkResourceToProcess() |