| Index: content/child/service_worker/web_service_worker_provider_impl.cc
|
| diff --git a/content/child/service_worker/web_service_worker_provider_impl.cc b/content/child/service_worker/web_service_worker_provider_impl.cc
|
| index 5b6edbff80fa45c45105718a9d3b62e1a9ddf50d..6619cd979d895a00dd0d4ac7c6f5089e7688a327 100644
|
| --- a/content/child/service_worker/web_service_worker_provider_impl.cc
|
| +++ b/content/child/service_worker/web_service_worker_provider_impl.cc
|
| @@ -68,6 +68,12 @@ void WebServiceWorkerProviderImpl::unregisterServiceWorker(
|
| provider_id_, pattern, callbacks);
|
| }
|
|
|
| +void WebServiceWorkerProviderImpl::getRegistration(
|
| + const blink::WebURL& document_url,
|
| + WebServiceWorkerRegistrationCallbacks* callbacks) {
|
| + GetDispatcher()->GetRegistration(provider_id_, document_url, callbacks);
|
| +}
|
| +
|
| void WebServiceWorkerProviderImpl::RemoveScriptClient() {
|
| // Remove the script client, but only if the dispatcher is still there.
|
| // (For cleanup path we don't need to bother creating a new dispatcher)
|
|
|