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

Unified Diff: chrome/browser/prefs/profile_pref_store_manager_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/profile_pref_store_manager_unittest.cc
diff --git a/chrome/browser/prefs/profile_pref_store_manager_unittest.cc b/chrome/browser/prefs/profile_pref_store_manager_unittest.cc
index 8910ca6e3ad081c4bf1df164e4ec217f1e42f26e..a552d86003ce780ecce3433bd374a3f48fa80231 100644
--- a/chrome/browser/prefs/profile_pref_store_manager_unittest.cc
+++ b/chrome/browser/prefs/profile_pref_store_manager_unittest.cc
@@ -51,7 +51,7 @@ class RegistryVerifier : public PrefStore::Observer {
: pref_registry_(pref_registry) {}
// PrefStore::Observer implementation
- virtual void OnPrefValueChanged(const std::string& key) OVERRIDE {
+ virtual void OnPrefValueChanged(const std::string& key) override {
EXPECT_TRUE(pref_registry_->end() !=
std::find_if(pref_registry_->begin(),
pref_registry_->end(),
@@ -59,7 +59,7 @@ class RegistryVerifier : public PrefStore::Observer {
<< "Unregistered key " << key << " was changed.";
}
- virtual void OnInitializationCompleted(bool succeeded) OVERRIDE {}
+ virtual void OnInitializationCompleted(bool succeeded) override {}
private:
scoped_refptr<PrefRegistry> pref_registry_;
@@ -95,7 +95,7 @@ class ProfilePrefStoreManagerTest : public testing::Test {
seed_("seed"),
reset_recorded_(false) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ProfilePrefStoreManager::RegisterPrefs(local_state_.registry());
ProfilePrefStoreManager::RegisterProfilePrefs(profile_pref_registry_.get());
for (const PrefHashFilter::TrackedPreferenceMetadata* it = kConfiguration;
@@ -140,7 +140,7 @@ class ProfilePrefStoreManagerTest : public testing::Test {
&local_state_));
}
- virtual void TearDown() OVERRIDE { DestroyPrefStore(); }
+ virtual void TearDown() override { DestroyPrefStore(); }
protected:
// Verifies whether a reset was reported via the RecordReset() hook. Also
« no previous file with comments | « chrome/browser/prefs/prefs_syncable_service_unittest.cc ('k') | chrome/browser/prefs/proxy_policy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698