| Index: content/browser/storage_partition_impl.h
|
| diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
|
| index 1136057cd8d503434a759f12a1d12c09958a351e..f8fda1c03526f76c452e174af0361bfae14af3ae 100644
|
| --- a/content/browser/storage_partition_impl.h
|
| +++ b/content/browser/storage_partition_impl.h
|
| @@ -33,30 +33,30 @@ class StoragePartitionImpl : public StoragePartition {
|
| storage::SpecialStoragePolicy* special_storage_policy);
|
|
|
| // StoragePartition interface.
|
| - virtual base::FilePath GetPath() OVERRIDE;
|
| - virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
|
| - virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE;
|
| - virtual storage::QuotaManager* GetQuotaManager() OVERRIDE;
|
| - virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE;
|
| - virtual storage::FileSystemContext* GetFileSystemContext() OVERRIDE;
|
| - virtual storage::DatabaseTracker* GetDatabaseTracker() OVERRIDE;
|
| - virtual DOMStorageContextWrapper* GetDOMStorageContext() OVERRIDE;
|
| - virtual IndexedDBContextImpl* GetIndexedDBContext() OVERRIDE;
|
| - virtual ServiceWorkerContextWrapper* GetServiceWorkerContext() OVERRIDE;
|
| + virtual base::FilePath GetPath() override;
|
| + virtual net::URLRequestContextGetter* GetURLRequestContext() override;
|
| + virtual net::URLRequestContextGetter* GetMediaURLRequestContext() override;
|
| + virtual storage::QuotaManager* GetQuotaManager() override;
|
| + virtual ChromeAppCacheService* GetAppCacheService() override;
|
| + virtual storage::FileSystemContext* GetFileSystemContext() override;
|
| + virtual storage::DatabaseTracker* GetDatabaseTracker() override;
|
| + virtual DOMStorageContextWrapper* GetDOMStorageContext() override;
|
| + virtual IndexedDBContextImpl* GetIndexedDBContext() override;
|
| + virtual ServiceWorkerContextWrapper* GetServiceWorkerContext() override;
|
|
|
| virtual void ClearDataForOrigin(
|
| uint32 remove_mask,
|
| uint32 quota_storage_remove_mask,
|
| const GURL& storage_origin,
|
| net::URLRequestContextGetter* request_context_getter,
|
| - const base::Closure& callback) OVERRIDE;
|
| + const base::Closure& callback) override;
|
| virtual void ClearData(uint32 remove_mask,
|
| uint32 quota_storage_remove_mask,
|
| const GURL& storage_origin,
|
| const OriginMatcherFunction& origin_matcher,
|
| const base::Time begin,
|
| const base::Time end,
|
| - const base::Closure& callback) OVERRIDE;
|
| + const base::Closure& callback) override;
|
|
|
| WebRTCIdentityStore* GetWebRTCIdentityStore();
|
|
|
|
|