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

Unified Diff: content/browser/quota/mock_quota_manager_proxy.h

Issue 638503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[download|… (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
« no previous file with comments | « content/browser/quota/mock_quota_manager.h ('k') | content/browser/quota/quota_backend_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/quota/mock_quota_manager_proxy.h
diff --git a/content/browser/quota/mock_quota_manager_proxy.h b/content/browser/quota/mock_quota_manager_proxy.h
index 6852b9111fbcc3c7c7bccbcc1cb3dfc60edfadb9..23accc8f42e13dc28dad81454fdbe1eaaa3ff010 100644
--- a/content/browser/quota/mock_quota_manager_proxy.h
+++ b/content/browser/quota/mock_quota_manager_proxy.h
@@ -23,22 +23,22 @@ class MockQuotaManagerProxy : public QuotaManagerProxy {
MockQuotaManagerProxy(MockQuotaManager* quota_manager,
base::SingleThreadTaskRunner* task_runner);
- virtual void RegisterClient(QuotaClient* client) OVERRIDE;
+ virtual void RegisterClient(QuotaClient* client) override;
void SimulateQuotaManagerDestroyed();
// We don't mock them.
- virtual void NotifyOriginInUse(const GURL& origin) OVERRIDE {}
- virtual void NotifyOriginNoLongerInUse(const GURL& origin) OVERRIDE {}
+ virtual void NotifyOriginInUse(const GURL& origin) override {}
+ virtual void NotifyOriginNoLongerInUse(const GURL& origin) override {}
virtual void SetUsageCacheEnabled(QuotaClient::ID client_id,
const GURL& origin,
StorageType type,
- bool enabled) OVERRIDE {}
+ bool enabled) override {}
virtual void GetUsageAndQuota(
base::SequencedTaskRunner* original_task_runner,
const GURL& origin,
StorageType type,
- const QuotaManager::GetUsageAndQuotaCallback& callback) OVERRIDE {}
+ const QuotaManager::GetUsageAndQuotaCallback& callback) override {}
// Validates the |client_id| and updates the internal access count
// which can be accessed via notify_storage_accessed_count().
@@ -46,7 +46,7 @@ class MockQuotaManagerProxy : public QuotaManagerProxy {
// last_notified_type_.
virtual void NotifyStorageAccessed(QuotaClient::ID client_id,
const GURL& origin,
- StorageType type) OVERRIDE;
+ StorageType type) override;
// Records the |origin|, |type| and |delta| as last_notified_origin_,
// last_notified_type_ and last_notified_delta_ respecitvely.
@@ -55,7 +55,7 @@ class MockQuotaManagerProxy : public QuotaManagerProxy {
virtual void NotifyStorageModified(QuotaClient::ID client_id,
const GURL& origin,
StorageType type,
- int64 delta) OVERRIDE;
+ int64 delta) override;
int notify_storage_accessed_count() const { return storage_accessed_count_; }
int notify_storage_modified_count() const { return storage_modified_count_; }
« no previous file with comments | « content/browser/quota/mock_quota_manager.h ('k') | content/browser/quota/quota_backend_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698