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

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

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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 3ec39e0be3feb5a761861b8304c8c558a33bf1c5..8fff76c7a3098d43c24332f0f5784709fab1c047 100644
--- a/content/browser/indexed_db/indexed_db_context_impl.h
+++ b/content/browser/indexed_db/indexed_db_context_impl.h
@@ -63,14 +63,13 @@ 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::FilePath GetFilePathForTesting(
+ base::SequencedTaskRunner* TaskRunner() const override;
+ std::vector<IndexedDBInfo> GetAllOriginsInfo() override;
+ int64 GetOriginDiskUsage(const GURL& origin_url) override;
+ void DeleteForOrigin(const GURL& origin_url) override;
+ base::FilePath GetFilePathForTesting(
const std::string& origin_id) const override;
- virtual void SetTaskRunnerForTesting(base::SequencedTaskRunner* task_runner)
- override;
+ void SetTaskRunnerForTesting(base::SequencedTaskRunner* task_runner) override;
// Methods called by IndexedDBDispatcherHost for quota support.
void ConnectionOpened(const GURL& origin_url, IndexedDBConnection* db);
@@ -106,7 +105,7 @@ class CONTENT_EXPORT IndexedDBContextImpl
bool is_incognito() const { return data_path_.empty(); }
protected:
- virtual ~IndexedDBContextImpl();
+ ~IndexedDBContextImpl() override;
private:
FRIEND_TEST_ALL_PREFIXES(IndexedDBTest, ClearLocalState);

Powered by Google App Engine
This is Rietveld 408576698