| 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 0e3d3654e6002fbdb14d056e6f7070c80e20a6a2..7c70223313b514e9687808cc591a61ba1da06d7d 100644
|
| --- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -138,6 +138,11 @@ void ServiceWorkerGlobalScopeClientImpl::navigate(const WebString& clientUUID, c
|
| m_client.navigate(clientUUID, url, callback);
|
| }
|
|
|
| +void ServiceWorkerGlobalScopeClientImpl::registerForeignFetchScopes(const WebVector<WebURL>& subScopes)
|
| +{
|
| + m_client.registerForeignFetchScopes(subScopes);
|
| +}
|
| +
|
| ServiceWorkerGlobalScopeClientImpl::ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient& client)
|
| : m_client(client)
|
| {
|
|
|