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

Unified Diff: content/browser/indexed_db/mock_indexed_db_database_callbacks.h

Issue 602883003: Replacing the OVERRIDE with override and FINAL with final in content/browser/indexed_db (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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
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_; }
« no previous file with comments | « content/browser/indexed_db/mock_indexed_db_callbacks.h ('k') | content/browser/indexed_db/mock_indexed_db_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698