| 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 cc0eeae4bc4781c8c5a5fb484f1d8e5739c5ddc9..952bfe037f7284ee1ca89ee028da9d4fe2c937a4 100644
|
| --- a/content/browser/service_worker/service_worker_dispatcher_host.h
|
| +++ b/content/browser/service_worker/service_worker_dispatcher_host.h
|
| @@ -67,8 +67,6 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
|
| const GURL& pattern);
|
| void OnProviderCreated(int provider_id);
|
| void OnProviderDestroyed(int provider_id);
|
| - void OnAddScriptClient(int thread_id, int provider_id);
|
| - void OnRemoveScriptClient(int thread_id, int provider_id);
|
| void OnSetHostedVersionId(int provider_id, int64 version_id);
|
| void OnWorkerScriptLoaded(int embedded_worker_id);
|
| void OnWorkerScriptLoadFailed(int embedded_worker_id);
|
| @@ -86,7 +84,8 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
|
| void OnPostMessage(int handle_id,
|
| const base::string16& message,
|
| const std::vector<int>& sent_message_port_ids);
|
| - void OnServiceWorkerObjectDestroyed(int handle_id);
|
| + void OnIncrementServiceWorkerRefCount(int handle_id);
|
| + void OnDecrementServiceWorkerRefCount(int handle_id);
|
|
|
| // Callbacks from ServiceWorkerContextCore
|
| void RegistrationComplete(int thread_id,
|
|
|