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

Unified Diff: Source/modules/webdatabase/ChangeVersionWrapper.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/webaudio/WaveShaperProcessor.h ('k') | Source/modules/webdatabase/Database.cpp » ('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 c451cb891e08ffa253cf00e89450df9a51d1c254..fd3ff28633d47f7d5fa396cb26888ca7d035933f 100644
--- a/Source/modules/webdatabase/ChangeVersionWrapper.h
+++ b/Source/modules/webdatabase/ChangeVersionWrapper.h
@@ -36,14 +36,14 @@ namespace blink {
class SQLErrorData;
-class ChangeVersionWrapper FINAL : public SQLTransactionWrapper {
+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;
+ virtual bool performPreflight(SQLTransactionBackend*) override;
+ virtual bool performPostflight(SQLTransactionBackend*) override;
+ virtual SQLErrorData* sqlError() const override { return m_sqlError.get(); }
+ virtual 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/Database.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698