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

Unified Diff: Source/modules/webdatabase/ChangeVersionWrapper.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/webaudio/WaveShaperProcessor.h ('k') | Source/modules/webdatabase/DatabaseContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/ChangeVersionWrapper.h
diff --git a/Source/modules/webdatabase/ChangeVersionWrapper.h b/Source/modules/webdatabase/ChangeVersionWrapper.h
index fd3ff28633d47f7d5fa396cb26888ca7d035933f..dbf4c2074baf798da7e354271d92970953369500 100644
--- a/Source/modules/webdatabase/ChangeVersionWrapper.h
+++ b/Source/modules/webdatabase/ChangeVersionWrapper.h
@@ -40,10 +40,10 @@ class ChangeVersionWrapper final : public SQLTransactionWrapper {
public:
static ChangeVersionWrapper* create(const String& oldVersion, const String& newVersion) { return new ChangeVersionWrapper(oldVersion, newVersion); }
- virtual bool performPreflight(SQLTransactionBackend*) override;
- virtual bool performPostflight(SQLTransactionBackend*) override;
- virtual SQLErrorData* sqlError() const override { return m_sqlError.get(); }
- virtual void handleCommitFailedAfterPostflight(SQLTransactionBackend*) override;
+ bool performPreflight(SQLTransactionBackend*) override;
+ bool performPostflight(SQLTransactionBackend*) override;
+ SQLErrorData* sqlError() const override { return m_sqlError.get(); }
+ void handleCommitFailedAfterPostflight(SQLTransactionBackend*) override;
private:
ChangeVersionWrapper(const String& oldVersion, const String& newVersion);
« no previous file with comments | « Source/modules/webaudio/WaveShaperProcessor.h ('k') | Source/modules/webdatabase/DatabaseContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698