Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp |
index 7f7cfeb15b84edee7abccd91d58b689fbfcb27b8..90f3d1a77af807c6b18d72b1e0b03eb4dbf17b85 100644 |
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp |
@@ -147,9 +147,9 @@ void ServiceWorkerGlobalScopeClientImpl::navigate(const WebString& clientUUID, c |
m_client.navigate(clientUUID, url, callback); |
} |
-void ServiceWorkerGlobalScopeClientImpl::registerForeignFetchScopes(const WebVector<WebURL>& subScopes) |
+void ServiceWorkerGlobalScopeClientImpl::registerForeignFetchScopes(const WebVector<WebURL>& subScopes, const WebVector<WebSecurityOrigin>& origins) |
{ |
- m_client.registerForeignFetchScopes(subScopes); |
+ m_client.registerForeignFetchScopes(subScopes, origins); |
} |
ServiceWorkerGlobalScopeClientImpl::ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient& client) |