| Index: third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/ChromeClient.cpp b/third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| index c8fed1d6cb68d707f48a8113736efa97e768a04a..2ee597cbed150581ed8925388f6a9131da0a535d 100644
|
| --- a/third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| +++ b/third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| @@ -30,7 +30,7 @@
|
| #include "core/page/ScopedPageLoadDeferrer.h"
|
| #include "core/page/WindowFeatures.h"
|
| #include "platform/geometry/IntRect.h"
|
| -#include "platform/network/NetworkHints.h"
|
| +#include "public/platform/Platform.h"
|
| #include "public/platform/WebScreenInfo.h"
|
| #include <algorithm>
|
|
|
| @@ -131,7 +131,7 @@ bool ChromeClient::openJavaScriptPrompt(LocalFrame* frame, const String& prompt,
|
| void ChromeClient::mouseDidMoveOverElement(const HitTestResult& result)
|
| {
|
| if (result.innerNode() && result.innerNode()->document().isDNSPrefetchEnabled())
|
| - prefetchDNS(result.absoluteLinkURL().host());
|
| + Platform::current()->speculativePreresolve(result.absoluteLinkURL());
|
|
|
| showMouseOverURL(result);
|
|
|
|
|