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

Unified Diff: Source/modules/webdatabase/SQLTransaction.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
Index: Source/modules/webdatabase/SQLTransaction.h
diff --git a/Source/modules/webdatabase/SQLTransaction.h b/Source/modules/webdatabase/SQLTransaction.h
index 5b1bfca555356df150ae2980f1a8ee7bfa4c43cd..1e061c86c56e2689c0d343667f4009f6824c7e20 100644
--- a/Source/modules/webdatabase/SQLTransaction.h
+++ b/Source/modules/webdatabase/SQLTransaction.h
@@ -47,7 +47,7 @@ class SQLTransactionErrorCallback;
class SQLValue;
class VoidCallback;
-class SQLTransaction FINAL
+class SQLTransaction final
: public GarbageCollectedFinalized<SQLTransaction>
, public SQLTransactionStateMachine<SQLTransaction>
, public ScriptWrappable {
@@ -82,7 +82,7 @@ private:
void clearCallbacks();
// State Machine functions:
- virtual StateFunction stateFunctionFor(SQLTransactionState) OVERRIDE;
+ virtual StateFunction stateFunctionFor(SQLTransactionState) override;
bool computeNextStateAndCleanupIfNeeded();
// State functions:
« no previous file with comments | « Source/modules/webdatabase/InspectorDatabaseAgent.cpp ('k') | Source/modules/webdatabase/SQLTransactionBackend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698