Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1254)

Unified Diff: Source/web/ServiceWorkerGlobalScopeClientImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/ScrollbarGroup.h ('k') | Source/web/ServiceWorkerGlobalScopeProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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&);
« no previous file with comments | « Source/web/ScrollbarGroup.h ('k') | Source/web/ServiceWorkerGlobalScopeProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698