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

Unified Diff: chrome/browser/prefs/tracked/pref_hash_store_impl.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/prefs/tracked/pref_hash_store_impl.cc
diff --git a/chrome/browser/prefs/tracked/pref_hash_store_impl.cc b/chrome/browser/prefs/tracked/pref_hash_store_impl.cc
index e7862b8aab5c93a7a51e13aa5fc9844d11d633c2..a99db41a0a268890f4faf0334c40b74401bb69b4 100644
--- a/chrome/browser/prefs/tracked/pref_hash_store_impl.cc
+++ b/chrome/browser/prefs/tracked/pref_hash_store_impl.cc
@@ -21,22 +21,22 @@ class PrefHashStoreImpl::PrefHashStoreTransactionImpl
// PrefHashStoreTransaction implementation.
virtual ValueState CheckValue(const std::string& path,
- const base::Value* value) const OVERRIDE;
+ const base::Value* value) const override;
virtual void StoreHash(const std::string& path,
- const base::Value* value) OVERRIDE;
+ const base::Value* value) override;
virtual ValueState CheckSplitValue(
const std::string& path,
const base::DictionaryValue* initial_split_value,
- std::vector<std::string>* invalid_keys) const OVERRIDE;
+ std::vector<std::string>* invalid_keys) const override;
virtual void StoreSplitHash(
const std::string& path,
- const base::DictionaryValue* split_value) OVERRIDE;
- virtual bool HasHash(const std::string& path) const OVERRIDE;
+ const base::DictionaryValue* split_value) override;
+ virtual bool HasHash(const std::string& path) const override;
virtual void ImportHash(const std::string& path,
- const base::Value* hash) OVERRIDE;
- virtual void ClearHash(const std::string& path) OVERRIDE;
- virtual bool IsSuperMACValid() const OVERRIDE;
- virtual bool StampSuperMac() OVERRIDE;
+ const base::Value* hash) override;
+ virtual void ClearHash(const std::string& path) override;
+ virtual bool IsSuperMACValid() const override;
+ virtual bool StampSuperMac() override;
private:
bool GetSplitMacs(const std::string& path,
« no previous file with comments | « chrome/browser/prefs/tracked/pref_hash_store_impl.h ('k') | chrome/browser/prefs/tracked/pref_service_hash_store_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698