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

Unified Diff: content/browser/indexed_db/mock_indexed_db_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_callbacks.h
diff --git a/content/browser/indexed_db/mock_indexed_db_callbacks.h b/content/browser/indexed_db/mock_indexed_db_callbacks.h
index fecfd1abb29dd05cf03835c2eb3a6e9cc63550ec..780555d6f8461923128d998fe17b2517e09d7745 100644
--- a/content/browser/indexed_db/mock_indexed_db_callbacks.h
+++ b/content/browser/indexed_db/mock_indexed_db_callbacks.h
@@ -17,12 +17,12 @@ class MockIndexedDBCallbacks : public IndexedDBCallbacks {
MockIndexedDBCallbacks();
explicit MockIndexedDBCallbacks(bool expect_connection);
- virtual void OnSuccess() OVERRIDE;
- virtual void OnSuccess(int64 result) OVERRIDE;
- virtual void OnSuccess(const std::vector<base::string16>& result) OVERRIDE;
- virtual void OnSuccess(const IndexedDBKey& key) OVERRIDE;
+ virtual void OnSuccess() override;
+ virtual void OnSuccess(int64 result) override;
+ virtual void OnSuccess(const std::vector<base::string16>& result) override;
+ virtual void OnSuccess(const IndexedDBKey& key) override;
virtual void OnSuccess(scoped_ptr<IndexedDBConnection> connection,
- const IndexedDBDatabaseMetadata& metadata) OVERRIDE;
+ const IndexedDBDatabaseMetadata& metadata) override;
IndexedDBConnection* connection() { return connection_.get(); }
protected:

Powered by Google App Engine
This is Rietveld 408576698