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

Unified Diff: chrome/browser/extensions/api/storage/managed_value_store_cache.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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: chrome/browser/extensions/api/storage/managed_value_store_cache.h
diff --git a/chrome/browser/extensions/api/storage/managed_value_store_cache.h b/chrome/browser/extensions/api/storage/managed_value_store_cache.h
index ec44392735842551edb6ab28d1f995e1534fd3ef..b33407cb8b64d86adcf4623893465c954c8cead9 100644
--- a/chrome/browser/extensions/api/storage/managed_value_store_cache.h
+++ b/chrome/browser/extensions/api/storage/managed_value_store_cache.h
@@ -56,17 +56,17 @@ class ManagedValueStoreCache : public ValueStoreCache,
PolicyValueStoreMap;
// ValueStoreCache implementation:
- virtual void ShutdownOnUI() OVERRIDE;
+ virtual void ShutdownOnUI() override;
virtual void RunWithValueStoreForExtension(
const StorageCallback& callback,
- scoped_refptr<const Extension> extension) OVERRIDE;
- virtual void DeleteStorageSoon(const std::string& extension_id) OVERRIDE;
+ scoped_refptr<const Extension> extension) override;
+ virtual void DeleteStorageSoon(const std::string& extension_id) override;
// PolicyService::Observer implementation:
- virtual void OnPolicyServiceInitialized(policy::PolicyDomain domain) OVERRIDE;
+ virtual void OnPolicyServiceInitialized(policy::PolicyDomain domain) override;
virtual void OnPolicyUpdated(const policy::PolicyNamespace& ns,
const policy::PolicyMap& previous,
- const policy::PolicyMap& current) OVERRIDE;
+ const policy::PolicyMap& current) override;
// Posted by OnPolicyUpdated() to update a PolicyValueStore on the FILE
// thread.

Powered by Google App Engine
This is Rietveld 408576698