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

Unified Diff: Source/modules/webdatabase/DatabaseContext.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (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/modules/webdatabase/Database.cpp ('k') | Source/modules/webdatabase/DatabaseManager.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/DatabaseContext.h
diff --git a/Source/modules/webdatabase/DatabaseContext.h b/Source/modules/webdatabase/DatabaseContext.h
index 5e6908d73d2fcc6326ccea4555fff3bfd853245e..d7e9c878b55fd47ec388d79f2b00f36249762b95 100644
--- a/Source/modules/webdatabase/DatabaseContext.h
+++ b/Source/modules/webdatabase/DatabaseContext.h
@@ -40,7 +40,7 @@ class DatabaseThread;
class ExecutionContext;
class SecurityOrigin;
-class DatabaseContext FINAL
+class DatabaseContext final
: public GarbageCollectedFinalized<DatabaseContext>
, public ActiveDOMObject {
public:
@@ -52,8 +52,8 @@ public:
void trace(Visitor*);
// For life-cycle management (inherited from ActiveDOMObject):
- virtual void contextDestroyed() OVERRIDE;
- virtual void stop() OVERRIDE;
+ virtual void contextDestroyed() override;
+ virtual void stop() override;
DatabaseContext* backend();
DatabaseThread* databaseThread();
« no previous file with comments | « Source/modules/webdatabase/Database.cpp ('k') | Source/modules/webdatabase/DatabaseManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698