| Index: Source/modules/serviceworkers/NavigatorServiceWorker.h
|
| diff --git a/Source/modules/serviceworkers/NavigatorServiceWorker.h b/Source/modules/serviceworkers/NavigatorServiceWorker.h
|
| index c1f747136d7e2043e21f3761e61c4517247fabbb..39e21b32ce6532964587a0a93c9212c786ff683e 100644
|
| --- a/Source/modules/serviceworkers/NavigatorServiceWorker.h
|
| +++ b/Source/modules/serviceworkers/NavigatorServiceWorker.h
|
| @@ -15,7 +15,7 @@ class Document;
|
| class Navigator;
|
| class ServiceWorkerContainer;
|
|
|
| -class NavigatorServiceWorker FINAL : public NoBaseWillBeGarbageCollected<NavigatorServiceWorker>, public WillBeHeapSupplement<Navigator>, DOMWindowProperty {
|
| +class NavigatorServiceWorker final : public NoBaseWillBeGarbageCollected<NavigatorServiceWorker>, public WillBeHeapSupplement<Navigator>, DOMWindowProperty {
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorServiceWorker);
|
| DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorServiceWorker);
|
| public:
|
| @@ -26,14 +26,14 @@ public:
|
|
|
| static ServiceWorkerContainer* serviceWorker(Navigator&);
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| explicit NavigatorServiceWorker(Navigator&);
|
| ServiceWorkerContainer* serviceWorker();
|
|
|
| // DOMWindowProperty override.
|
| - virtual void willDetachGlobalObjectFromFrame() OVERRIDE;
|
| + virtual void willDetachGlobalObjectFromFrame() override;
|
|
|
| PersistentWillBeMember<ServiceWorkerContainer> m_serviceWorker;
|
| };
|
|
|