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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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/ChangeVersionWrapper.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/Database.h
diff --git a/Source/modules/webdatabase/Database.h b/Source/modules/webdatabase/Database.h
index 454cdec6b2ef841b034a43d26025b4faa34dca3e..18c852c60d4b33349481006bf4ec3b47743298c4 100644
--- a/Source/modules/webdatabase/Database.h
+++ b/Source/modules/webdatabase/Database.h
@@ -48,12 +48,12 @@ class SQLTransactionCallback;
class SQLTransactionErrorCallback;
class VoidCallback;
-class Database : public DatabaseBase, public DatabaseBackend, public ScriptWrappable {
+class Database FINAL : public DatabaseBase, public DatabaseBackend, public ScriptWrappable {
public:
virtual ~Database();
// Direct support for the DOM API
- virtual String version() const;
+ virtual String version() const OVERRIDE;
void changeVersion(const String& oldVersion, const String& newVersion, PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransactionErrorCallback>, PassOwnPtr<VoidCallback> successCallback);
void transaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransactionErrorCallback>, PassOwnPtr<VoidCallback> successCallback);
void readTransaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransactionErrorCallback>, PassOwnPtr<VoidCallback> successCallback);
@@ -64,9 +64,9 @@ public:
Vector<String> tableNames();
- virtual SecurityOrigin* securityOrigin() const;
+ virtual SecurityOrigin* securityOrigin() const OVERRIDE;
- virtual void closeImmediately();
+ virtual void closeImmediately() OVERRIDE;
void scheduleTransactionCallback(SQLTransaction*);
« no previous file with comments | « Source/modules/webdatabase/ChangeVersionWrapper.h ('k') | Source/modules/webdatabase/Database.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698