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

Unified Diff: Source/web/ServiceWorkerGlobalScopeProxy.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/ServiceWorkerGlobalScopeClientImpl.h ('k') | Source/web/SharedWorkerRepositoryClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ServiceWorkerGlobalScopeProxy.h
diff --git a/Source/web/ServiceWorkerGlobalScopeProxy.h b/Source/web/ServiceWorkerGlobalScopeProxy.h
index 53894182844a2fc30d083559246eb3d45fadbbba..6c2de2dc2206f1a663b4e0edba8eb1775fb2b155 100644
--- a/Source/web/ServiceWorkerGlobalScopeProxy.h
+++ b/Source/web/ServiceWorkerGlobalScopeProxy.h
@@ -58,7 +58,7 @@ class WebServiceWorkerRequest;
// An instance of this class is supposed to outlive until
// workerThreadTerminated() is called by its corresponding
// WorkerGlobalScope.
-class ServiceWorkerGlobalScopeProxy FINAL
+class ServiceWorkerGlobalScopeProxy final
: public WebServiceWorkerContextProxy
, public WorkerReportingProxy {
WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy);
@@ -67,22 +67,22 @@ public:
virtual ~ServiceWorkerGlobalScopeProxy();
// WebServiceWorkerContextProxy overrides:
- virtual void dispatchActivateEvent(int) OVERRIDE;
- virtual void dispatchInstallEvent(int) OVERRIDE;
- virtual void dispatchFetchEvent(int, const WebServiceWorkerRequest&) OVERRIDE;
- virtual void dispatchMessageEvent(const WebString& message, const WebMessagePortChannelArray&) OVERRIDE;
- virtual void dispatchPushEvent(int, const WebString& data) OVERRIDE;
- virtual void dispatchSyncEvent(int) OVERRIDE;
+ virtual void dispatchActivateEvent(int) override;
+ virtual void dispatchInstallEvent(int) override;
+ virtual void dispatchFetchEvent(int, const WebServiceWorkerRequest&) override;
+ virtual void dispatchMessageEvent(const WebString& message, const WebMessagePortChannelArray&) override;
+ virtual void dispatchPushEvent(int, const WebString& data) override;
+ virtual void dispatchSyncEvent(int) override;
// WorkerReportingProxy overrides:
- virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE;
- virtual void reportConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) OVERRIDE;
- virtual void postMessageToPageInspector(const String&) OVERRIDE;
- virtual void updateInspectorStateCookie(const String&) OVERRIDE;
- virtual void workerGlobalScopeStarted(WorkerGlobalScope*) OVERRIDE;
- virtual void workerGlobalScopeClosed() OVERRIDE;
- virtual void willDestroyWorkerGlobalScope() OVERRIDE;
- virtual void workerThreadTerminated() OVERRIDE;
+ virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) override;
+ virtual void reportConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override;
+ virtual void postMessageToPageInspector(const String&) override;
+ virtual void updateInspectorStateCookie(const String&) override;
+ virtual void workerGlobalScopeStarted(WorkerGlobalScope*) override;
+ virtual void workerGlobalScopeClosed() override;
+ virtual void willDestroyWorkerGlobalScope() override;
+ virtual void workerThreadTerminated() override;
private:
ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, Document&, WebServiceWorkerContextClient&);
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeClientImpl.h ('k') | Source/web/SharedWorkerRepositoryClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698