| 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 2d668ede249bd566d778f463d147ada7899db5a7..a20bced107bdc421c34ca6dc64a207a3992f3428 100644
|
| --- a/content/browser/service_worker/service_worker_register_job.h
|
| +++ b/content/browser/service_worker/service_worker_register_job.h
|
| @@ -53,6 +53,7 @@ class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase {
|
|
|
| // ServiceWorkerRegisterJobBase implementation:
|
| virtual void Start() OVERRIDE;
|
| + virtual void Abort() OVERRIDE;
|
| virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE;
|
| virtual RegistrationJobType GetType() OVERRIDE;
|
|
|
| @@ -70,7 +71,8 @@ class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase {
|
| INSTALL,
|
| STORE,
|
| ACTIVATE,
|
| - COMPLETE
|
| + COMPLETE,
|
| + ABORT,
|
| };
|
|
|
| // Holds internal state of ServiceWorkerRegistrationJob, to compel use of the
|
|
|