Index: content/browser/indexed_db/mock_indexed_db_database_callbacks.h |
diff --git a/content/browser/indexed_db/mock_indexed_db_database_callbacks.h b/content/browser/indexed_db/mock_indexed_db_database_callbacks.h |
index 7252a9fde0af0b7d77a9417ccac3e859ed616079..b38542b3fdf1a69087e4cb14dadb2aac2a230ecf 100644 |
--- a/content/browser/indexed_db/mock_indexed_db_database_callbacks.h |
+++ b/content/browser/indexed_db/mock_indexed_db_database_callbacks.h |
@@ -14,11 +14,11 @@ class MockIndexedDBDatabaseCallbacks : public IndexedDBDatabaseCallbacks { |
public: |
MockIndexedDBDatabaseCallbacks(); |
- virtual void OnVersionChange(int64 old_version, int64 new_version) OVERRIDE {} |
- virtual void OnForcedClose() OVERRIDE; |
+ virtual void OnVersionChange(int64 old_version, int64 new_version) override {} |
+ virtual void OnForcedClose() override; |
virtual void OnAbort(int64 transaction_id, |
- const IndexedDBDatabaseError& error) OVERRIDE; |
- virtual void OnComplete(int64 transaction_id) OVERRIDE {} |
+ const IndexedDBDatabaseError& error) override; |
+ virtual void OnComplete(int64 transaction_id) override {} |
bool abort_called() const { return abort_called_; } |
bool forced_close_called() const { return forced_close_called_; } |