Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerLinkResource.cpp |
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerLinkResource.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerLinkResource.cpp |
index effb5e7836120d7abee5beba0e29480ee30600bc..a89dad8586c8a6ba0cd40655ab36b29a6d5eb93e 100644 |
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerLinkResource.cpp |
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerLinkResource.cpp |
@@ -26,12 +26,12 @@ public: |
void onSuccess(std::unique_ptr<WebServiceWorkerRegistration::Handle> handle) override |
{ |
- Platform::current()->currentThread()->scheduler()->timerTaskRunner()->postTask(BLINK_FROM_HERE, bind(&LinkLoaderClient::linkLoaded, m_client)); |
+ Platform::current()->currentThread()->scheduler()->timerTaskRunner()->postTask(BLINK_FROM_HERE, WTF::bind(&LinkLoaderClient::linkLoaded, m_client)); |
} |
void onError(const WebServiceWorkerError& error) override |
{ |
- Platform::current()->currentThread()->scheduler()->timerTaskRunner()->postTask(BLINK_FROM_HERE, bind(&LinkLoaderClient::linkLoadingErrored, m_client)); |
+ Platform::current()->currentThread()->scheduler()->timerTaskRunner()->postTask(BLINK_FROM_HERE, WTF::bind(&LinkLoaderClient::linkLoadingErrored, m_client)); |
} |
private: |