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

Unified Diff: content/browser/storage_partition_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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
« no previous file with comments | « content/browser/startup_task_runner_unittest.cc ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « content/browser/startup_task_runner_unittest.cc ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698