| Index: content/browser/service_worker/service_worker_dispatcher_host.h
|
| diff --git a/content/browser/service_worker/service_worker_dispatcher_host.h b/content/browser/service_worker/service_worker_dispatcher_host.h
|
| index 6cca82ae134d34f4a101ccf409d9000aab491f35..ad8a677548cb2a8fc391b8c6ba1f8b12233d3e8d 100644
|
| --- a/content/browser/service_worker/service_worker_dispatcher_host.h
|
| +++ b/content/browser/service_worker/service_worker_dispatcher_host.h
|
| @@ -88,6 +88,7 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
|
| int provider_id,
|
| const GURL& pattern,
|
| const GURL& script_url);
|
| + void OnUpdateServiceWorker(int provider_id, int64 registration_id);
|
| void OnUnregisterServiceWorker(int thread_id,
|
| int request_id,
|
| int provider_id,
|
| @@ -133,6 +134,11 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
|
| void OnServiceWorkerObjectDestroyed(int handle_id);
|
| void OnTerminateWorker(int handle_id);
|
|
|
| + void DidFindRegistrationForUpdate(
|
| + const GURL& document_url,
|
| + ServiceWorkerStatusCode status,
|
| + const scoped_refptr<ServiceWorkerRegistration>& registration);
|
| +
|
| ServiceWorkerRegistrationHandle* FindRegistrationHandle(
|
| int provider_id,
|
| int64 registration_id);
|
|
|