| 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();
|
|
|