| 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);
|
|
|