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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerContainerClient.h

Issue 630403002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules/serviceworkers (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
Index: Source/modules/serviceworkers/ServiceWorkerContainerClient.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerContainerClient.h b/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
index 65100c17849b1d7a5be666afd090c2dc4c928f42..d4164ba0e4c285568092cdd2131aecaa325be282 100644
--- a/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
+++ b/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
@@ -16,7 +16,7 @@ class WebServiceWorkerProvider;
// This mainly exists to provide access to WebServiceWorkerProvider.
// Owned by Document (or WorkerClients).
-class ServiceWorkerContainerClient FINAL
+class ServiceWorkerContainerClient final
: public NoBaseWillBeGarbageCollectedFinalized<ServiceWorkerContainerClient>
, public DocumentSupplement
, public WillBeHeapSupplement<WorkerClients> {
@@ -31,7 +31,7 @@ public:
static const char* supplementName();
static ServiceWorkerContainerClient* from(ExecutionContext*);
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
DocumentSupplement::trace(visitor);
WillBeHeapSupplement<WorkerClients>::trace(visitor);
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerContainer.cpp ('k') | Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698