| 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 9b972b6c02fa59e9fe57e7e11c57b964415442c1..105cdf58c916a4a24b8d5f0613c7d8818b18c9cf 100644
|
| --- a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
|
| +++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
|
| @@ -76,17 +76,13 @@ 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 {
|
| - return read_error_;
|
| - }
|
| - virtual bool IsInitializationComplete() const override {
|
| - return true;
|
| - }
|
| + PrefReadError GetReadError() const override { return read_error_; }
|
| + bool IsInitializationComplete() const override { return true; }
|
| void set_read_error(PrefReadError read_error) {
|
| read_error_ = read_error;
|
| }
|
| private:
|
| - virtual ~TestingPrefStoreWithCustomReadError() {}
|
| + ~TestingPrefStoreWithCustomReadError() override {}
|
| PrefReadError read_error_;
|
| };
|
|
|
|
|