Index: Source/modules/webdatabase/DatabaseSync.h |
diff --git a/Source/modules/webdatabase/DatabaseSync.h b/Source/modules/webdatabase/DatabaseSync.h |
index 64551d24df6ac360cfb208c54baccd6109aee557..c308960fdfcd8e074bfefaeced506e26f9f14a5d 100644 |
--- a/Source/modules/webdatabase/DatabaseSync.h |
+++ b/Source/modules/webdatabase/DatabaseSync.h |
@@ -51,7 +51,7 @@ class SQLTransactionSyncCallback; |
class SecurityOrigin; |
// Instances of this class should be created and used only on the worker's context thread. |
-class DatabaseSync : public DatabaseBase, public DatabaseBackendSync, public ScriptWrappable { |
+class DatabaseSync FINAL : public DatabaseBase, public DatabaseBackendSync, public ScriptWrappable { |
public: |
virtual ~DatabaseSync(); |
@@ -59,7 +59,7 @@ public: |
void transaction(PassOwnPtr<SQLTransactionSyncCallback>, ExceptionState&); |
void readTransaction(PassOwnPtr<SQLTransactionSyncCallback>, ExceptionState&); |
- virtual void closeImmediately(); |
+ virtual void closeImmediately() OVERRIDE; |
const String& lastErrorMessage() const { return m_lastErrorMessage; } |
void setLastErrorMessage(const String& message) { m_lastErrorMessage = message; } |