| Index: content/browser/service_worker/service_worker_context_core.h
|
| diff --git a/content/browser/service_worker/service_worker_context_core.h b/content/browser/service_worker/service_worker_context_core.h
|
| index 4ab4351be7d9088b592469aafc23bbf61a97e16b..ac972f56758ff07bdec793f86356e5a6a96b78fb 100644
|
| --- a/content/browser/service_worker/service_worker_context_core.h
|
| +++ b/content/browser/service_worker/service_worker_context_core.h
|
| @@ -70,10 +70,12 @@ class CONTENT_EXPORT ServiceWorkerContextCore
|
| // The callback will be called on the IO thread.
|
| void RegisterServiceWorker(const GURL& pattern,
|
| const GURL& script_url,
|
| + ServiceWorkerProviderHost* source_provider,
|
| const RegistrationCallback& callback);
|
|
|
| // The callback will be called on the IO thread.
|
| void UnregisterServiceWorker(const GURL& pattern,
|
| + ServiceWorkerProviderHost* source_provider,
|
| const UnregistrationCallback& callback);
|
|
|
| EmbeddedWorkerRegistry* embedded_worker_registry() {
|
| @@ -100,8 +102,8 @@ class CONTENT_EXPORT ServiceWorkerContextCore
|
|
|
| ProcessToProviderMap providers_;
|
| scoped_ptr<ServiceWorkerStorage> storage_;
|
| - scoped_ptr<ServiceWorkerJobCoordinator> job_coordinator_;
|
| scoped_refptr<EmbeddedWorkerRegistry> embedded_worker_registry_;
|
| + scoped_ptr<ServiceWorkerJobCoordinator> job_coordinator_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextCore);
|
| };
|
|
|