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

Unified Diff: content/browser/indexed_db/indexed_db_context_impl.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/indexed_db_context_impl.h
diff --git a/content/browser/indexed_db/indexed_db_context_impl.h b/content/browser/indexed_db/indexed_db_context_impl.h
index fbb75ae424d5e6822f3c4de4d558ed0cd9c13093..3ec39e0be3feb5a761861b8304c8c558a33bf1c5 100644
--- a/content/browser/indexed_db/indexed_db_context_impl.h
+++ b/content/browser/indexed_db/indexed_db_context_impl.h
@@ -63,14 +63,14 @@ class CONTENT_EXPORT IndexedDBContextImpl
void SetForceKeepSessionState() { force_keep_session_state_ = true; }
// IndexedDBContext implementation:
- virtual base::SequencedTaskRunner* TaskRunner() const OVERRIDE;
- virtual std::vector<IndexedDBInfo> GetAllOriginsInfo() OVERRIDE;
- virtual int64 GetOriginDiskUsage(const GURL& origin_url) OVERRIDE;
- virtual void DeleteForOrigin(const GURL& origin_url) OVERRIDE;
+ virtual base::SequencedTaskRunner* TaskRunner() const override;
+ virtual std::vector<IndexedDBInfo> GetAllOriginsInfo() override;
+ virtual int64 GetOriginDiskUsage(const GURL& origin_url) override;
+ virtual void DeleteForOrigin(const GURL& origin_url) override;
virtual base::FilePath GetFilePathForTesting(
- const std::string& origin_id) const OVERRIDE;
+ const std::string& origin_id) const override;
virtual void SetTaskRunnerForTesting(base::SequencedTaskRunner* task_runner)
- OVERRIDE;
+ override;
// Methods called by IndexedDBDispatcherHost for quota support.
void ConnectionOpened(const GURL& origin_url, IndexedDBConnection* db);

Powered by Google App Engine
This is Rietveld 408576698