| 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 d121e6bafa5c9f067fd7e2a6b7d705a8fb1650a4..5ddceae0049e35d3fce571b2f43232ab726ef67e 100644
|
| --- a/content/browser/service_worker/service_worker_dispatcher_host.h
|
| +++ b/content/browser/service_worker/service_worker_dispatcher_host.h
|
| @@ -87,6 +87,7 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
|
| int provider_id,
|
| const GURL& pattern,
|
| const GURL& script_url);
|
| + void OnUpdateServiceWorker(int provider_id, const GURL& pattern);
|
| void OnUnregisterServiceWorker(int thread_id,
|
| int request_id,
|
| int provider_id,
|
| @@ -131,6 +132,10 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
|
| void OnServiceWorkerObjectDestroyed(int handle_id);
|
| void OnTerminateWorker(int handle_id);
|
|
|
| + void DidFindRegistrationForUpdate(
|
| + ServiceWorkerStatusCode status,
|
| + const scoped_refptr<ServiceWorkerRegistration>& registration);
|
| +
|
| ServiceWorkerRegistrationHandle* FindRegistrationHandle(
|
| int provider_id,
|
| int64 registration_id);
|
|
|