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

Unified Diff: chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/ui/sync/profile_signin_confirmation_helper_unittest.cc
diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
index 62d926c7f04cba90c7a8f9bcae1d79bbbe9620ad..9b972b6c02fa59e9fe57e7e11c57b964415442c1 100644
--- a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
+++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
@@ -76,10 +76,10 @@ class TestingPrefStoreWithCustomReadError : public TestingPrefStore {
// By default the profile is "new" (NO_FILE means that the profile
// wasn't found on disk, so it was created).
}
- virtual PrefReadError GetReadError() const OVERRIDE {
+ virtual PrefReadError GetReadError() const override {
return read_error_;
}
- virtual bool IsInitializationComplete() const OVERRIDE {
+ virtual bool IsInitializationComplete() const override {
return true;
}
void set_read_error(PrefReadError read_error) {
@@ -127,7 +127,7 @@ class ProfileSigninConfirmationHelperTest : public testing::Test {
model_(NULL) {
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
// Create the profile.
TestingProfile::Builder builder;
user_prefs_ = new TestingPrefStoreWithCustomReadError;
@@ -157,7 +157,7 @@ class ProfileSigninConfirmationHelperTest : public testing::Test {
#endif
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
// TestExtensionSystem uses DeleteSoon, so we need to delete the profile
// and then run the message queue to clean up.
profile_.reset();

Powered by Google App Engine
This is Rietveld 408576698