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

Unified Diff: chrome/browser/prefs/tracked/pref_hash_filter_unittest.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_filter_unittest.cc
diff --git a/chrome/browser/prefs/tracked/pref_hash_filter_unittest.cc b/chrome/browser/prefs/tracked/pref_hash_filter_unittest.cc
index ed6adcb63a63adc1dcf8c71831b466c48ca0c0a0..d9e1bb02441a3a2dceb6549923214ff95e59a1fc 100644
--- a/chrome/browser/prefs/tracked/pref_hash_filter_unittest.cc
+++ b/chrome/browser/prefs/tracked/pref_hash_filter_unittest.cc
@@ -154,7 +154,7 @@ class MockPrefHashStore : public PrefHashStore {
// PrefHashStore implementation.
virtual scoped_ptr<PrefHashStoreTransaction> BeginTransaction(
- scoped_ptr<HashStoreContents> storage) OVERRIDE;
+ scoped_ptr<HashStoreContents> storage) override;
private:
// A MockPrefHashStoreTransaction is handed to the caller on
@@ -173,22 +173,22 @@ class MockPrefHashStore : public PrefHashStore {
// PrefHashStoreTransaction implementation.
virtual PrefHashStoreTransaction::ValueState CheckValue(
- const std::string& path, const base::Value* value) const OVERRIDE;
+ const std::string& path, const base::Value* value) const override;
virtual void StoreHash(const std::string& path,
- const base::Value* new_value) OVERRIDE;
+ const base::Value* new_value) override;
virtual PrefHashStoreTransaction::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:
MockPrefHashStore* outer_;
@@ -369,7 +369,7 @@ class PrefHashFilterTest
last_filter_on_load_modified_prefs_(false),
reset_recorded_(false) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
base::StatisticsRecorder::Initialize();
Reset();
}
« no previous file with comments | « chrome/browser/prefs/tracked/pref_hash_filter.h ('k') | chrome/browser/prefs/tracked/pref_hash_store_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698