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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/SQLTransaction.h ('k') | Source/modules/webgl/ANGLEInstancedArrays.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLTransactionBackend.h
diff --git a/Source/modules/webdatabase/SQLTransactionBackend.h b/Source/modules/webdatabase/SQLTransactionBackend.h
index a268ed85313ef0906385279ac7baf07b7ff9b2d2..62a9959146c746017ae7e4e6780db350ada4ae7c 100644
--- a/Source/modules/webdatabase/SQLTransactionBackend.h
+++ b/Source/modules/webdatabase/SQLTransactionBackend.h
@@ -60,7 +60,7 @@ class SQLTransactionBackend final : public GarbageCollectedFinalized<SQLTransact
public:
static SQLTransactionBackend* create(Database*, SQLTransaction*, SQLTransactionWrapper*, bool readOnly);
- virtual ~SQLTransactionBackend();
+ ~SQLTransactionBackend() override;
DECLARE_TRACE();
void lockAcquired();
@@ -85,7 +85,7 @@ private:
void enqueueStatementBackend(SQLStatementBackend*);
// State Machine functions:
- virtual StateFunction stateFunctionFor(SQLTransactionState) override;
+ StateFunction stateFunctionFor(SQLTransactionState) override;
void computeNextStateAndCleanupIfNeeded();
// State functions:
« no previous file with comments | « Source/modules/webdatabase/SQLTransaction.h ('k') | Source/modules/webgl/ANGLEInstancedArrays.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698