Index: Source/web/ServiceWorkerGlobalScopeClientImpl.h |
diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.h b/Source/web/ServiceWorkerGlobalScopeClientImpl.h |
index 26c10def8a6f8a43dd0dc3412ffb293a80dd6ff6..e1bfeffc13948afa86ff0afca4451d8e8b828d2a 100644 |
--- a/Source/web/ServiceWorkerGlobalScopeClientImpl.h |
+++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.h |
@@ -41,24 +41,24 @@ class WebServiceWorkerContextClient; |
class WebServiceWorkerResponse; |
class WebURL; |
-class ServiceWorkerGlobalScopeClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ServiceWorkerGlobalScopeClientImpl>, public ServiceWorkerGlobalScopeClient { |
+class ServiceWorkerGlobalScopeClientImpl final : public NoBaseWillBeGarbageCollectedFinalized<ServiceWorkerGlobalScopeClientImpl>, public ServiceWorkerGlobalScopeClient { |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerGlobalScopeClientImpl); |
public: |
static PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient> create(WebServiceWorkerContextClient&); |
virtual ~ServiceWorkerGlobalScopeClientImpl(); |
virtual void getClients(WebServiceWorkerClientsCallbacks*); |
- virtual WebURL scope() const OVERRIDE; |
- virtual WebServiceWorkerCacheStorage* cacheStorage() const OVERRIDE; |
+ virtual WebURL scope() const override; |
+ virtual WebServiceWorkerCacheStorage* cacheStorage() const override; |
- virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) OVERRIDE; |
- virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEventResult) OVERRIDE; |
- virtual void didHandleFetchEvent(int fetchEventID) OVERRIDE; |
- virtual void didHandleFetchEvent(int fetchEventID, const WebServiceWorkerResponse&) OVERRIDE; |
- virtual void didHandleSyncEvent(int syncEventID) OVERRIDE; |
- virtual void postMessageToClient(int clientID, const WebString& message, PassOwnPtr<WebMessagePortChannelArray>) OVERRIDE; |
+ virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) override; |
+ virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEventResult) override; |
+ virtual void didHandleFetchEvent(int fetchEventID) override; |
+ virtual void didHandleFetchEvent(int fetchEventID, const WebServiceWorkerResponse&) override; |
+ virtual void didHandleSyncEvent(int syncEventID) override; |
+ virtual void postMessageToClient(int clientID, const WebString& message, PassOwnPtr<WebMessagePortChannelArray>) override; |
- virtual void trace(Visitor* visitor) OVERRIDE { ServiceWorkerGlobalScopeClient::trace(visitor); } |
+ virtual void trace(Visitor* visitor) override { ServiceWorkerGlobalScopeClient::trace(visitor); } |
private: |
explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |