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

Unified Diff: Source/modules/webdatabase/SQLStatementBackend.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/SQLStatement.h ('k') | Source/modules/webdatabase/SQLTransaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLStatementBackend.h
diff --git a/Source/modules/webdatabase/SQLStatementBackend.h b/Source/modules/webdatabase/SQLStatementBackend.h
index ae6d32d7ce2b9f1edf6b8bada9cc9cd4869061f7..b7a0a1585092eb0e8f698e43052587e6423a737f 100644
--- a/Source/modules/webdatabase/SQLStatementBackend.h
+++ b/Source/modules/webdatabase/SQLStatementBackend.h
@@ -42,7 +42,7 @@ class DatabaseBackend;
class SQLError;
class SQLTransactionBackend;
-class SQLStatementBackend : public AbstractSQLStatementBackend {
+class SQLStatementBackend FINAL : public AbstractSQLStatementBackend {
public:
static PassRefPtr<SQLStatementBackend> create(PassOwnPtr<AbstractSQLStatement>,
const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions);
@@ -56,8 +56,8 @@ public:
void setVersionMismatchedError(DatabaseBackend*);
AbstractSQLStatement* frontend();
- virtual PassRefPtr<SQLError> sqlError() const;
- virtual PassRefPtr<SQLResultSet> sqlResultSet() const;
+ virtual PassRefPtr<SQLError> sqlError() const OVERRIDE;
+ virtual PassRefPtr<SQLResultSet> sqlResultSet() const OVERRIDE;
private:
SQLStatementBackend(PassOwnPtr<AbstractSQLStatement>, const String& statement,
« no previous file with comments | « Source/modules/webdatabase/SQLStatement.h ('k') | Source/modules/webdatabase/SQLTransaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698