| Index: content/browser/service_worker/service_worker_register_job.h
|
| diff --git a/content/browser/service_worker/service_worker_register_job.h b/content/browser/service_worker/service_worker_register_job.h
|
| index 80e9d27124febdf94fbad7bbe560aac62c7d1918..6fd9bdaf18f96adcb4f0c4987f6a1799d7370b66 100644
|
| --- a/content/browser/service_worker/service_worker_register_job.h
|
| +++ b/content/browser/service_worker/service_worker_register_job.h
|
| @@ -118,12 +118,18 @@ class ServiceWorkerRegisterJob
|
| virtual void OnPausedAfterDownload() OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
|
|
| - // Associates a waiting version to documents matched with a scope of the
|
| + // Associates an installing version to documents matched with a scope of the
|
| // version.
|
| CONTENT_EXPORT static void AssociateInstallingVersionToDocuments(
|
| base::WeakPtr<ServiceWorkerContextCore> context,
|
| ServiceWorkerVersion* version);
|
|
|
| + // Associates a waiting version to documents matched with a scope of the
|
| + // version.
|
| + CONTENT_EXPORT static void AssociateWaitingVersionToDocuments(
|
| + base::WeakPtr<ServiceWorkerContextCore> context,
|
| + ServiceWorkerVersion* version);
|
| +
|
| // Disassociates a version specified by |version_id| from documents.
|
| CONTENT_EXPORT static void DisassociateVersionFromDocuments(
|
| base::WeakPtr<ServiceWorkerContextCore> context,
|
|
|