| Index: content/browser/service_worker/service_worker_registration.h
|
| diff --git a/content/browser/service_worker/service_worker_registration.h b/content/browser/service_worker/service_worker_registration.h
|
| index 520974d53bc3137b0a31b5b7ff23a87d7565d147..cf9f5af980d297077adb122aa0c57034a6148ff6 100644
|
| --- a/content/browser/service_worker/service_worker_registration.h
|
| +++ b/content/browser/service_worker/service_worker_registration.h
|
| @@ -110,7 +110,7 @@ class CONTENT_EXPORT ServiceWorkerRegistration
|
| private:
|
| friend class base::RefCounted<ServiceWorkerRegistration>;
|
|
|
| - virtual ~ServiceWorkerRegistration();
|
| + ~ServiceWorkerRegistration() override;
|
|
|
| void SetVersionInternal(
|
| ServiceWorkerVersion* version,
|
| @@ -121,7 +121,7 @@ class CONTENT_EXPORT ServiceWorkerRegistration
|
| ChangedVersionAttributesMask* mask);
|
|
|
| // ServiceWorkerVersion::Listener override.
|
| - virtual void OnNoControllees(ServiceWorkerVersion* version) override;
|
| + void OnNoControllees(ServiceWorkerVersion* version) override;
|
|
|
| // This method corresponds to the [[Activate]] algorithm.
|
| void ActivateWaitingVersion();
|
|
|