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

Unified Diff: chrome/browser/extensions/api/storage/policy_value_store.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/policy_value_store.h
diff --git a/chrome/browser/extensions/api/storage/policy_value_store.h b/chrome/browser/extensions/api/storage/policy_value_store.h
index bc14b977bea5e1741333ffe491a47f402c8b4b19..ee2c55a2b3312acfa3a2586704980418b2db997f 100644
--- a/chrome/browser/extensions/api/storage/policy_value_store.h
+++ b/chrome/browser/extensions/api/storage/policy_value_store.h
@@ -40,24 +40,24 @@ class PolicyValueStore : public ValueStore {
void DeleteStorage();
// ValueStore implementation:
- virtual size_t GetBytesInUse(const std::string& key) OVERRIDE;
- virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
- virtual size_t GetBytesInUse() OVERRIDE;
- virtual ReadResult Get(const std::string& key) OVERRIDE;
- virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
- virtual ReadResult Get() OVERRIDE;
+ virtual size_t GetBytesInUse(const std::string& key) override;
+ virtual size_t GetBytesInUse(const std::vector<std::string>& keys) override;
+ virtual size_t GetBytesInUse() override;
+ virtual ReadResult Get(const std::string& key) override;
+ virtual ReadResult Get(const std::vector<std::string>& keys) override;
+ virtual ReadResult Get() override;
virtual WriteResult Set(
WriteOptions options,
const std::string& key,
- const base::Value& value) OVERRIDE;
+ const base::Value& value) override;
virtual WriteResult Set(
- WriteOptions options, const base::DictionaryValue& values) OVERRIDE;
- virtual WriteResult Remove(const std::string& key) OVERRIDE;
- virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
- virtual WriteResult Clear() OVERRIDE;
+ WriteOptions options, const base::DictionaryValue& values) override;
+ virtual WriteResult Remove(const std::string& key) override;
+ virtual WriteResult Remove(const std::vector<std::string>& keys) override;
+ virtual WriteResult Clear() override;
// Hopefully, as a Read-Only database, there is no reason to use these.
- virtual bool Restore() OVERRIDE;
- virtual bool RestoreKey(const std::string& key) OVERRIDE;
+ virtual bool Restore() override;
+ virtual bool RestoreKey(const std::string& key) override;
// For unit tests.
ValueStore* delegate() { return delegate_.get(); }

Powered by Google App Engine
This is Rietveld 408576698