| Index: components/signin/core/browser/account_tracker_service.h
|
| diff --git a/components/signin/core/browser/account_tracker_service.h b/components/signin/core/browser/account_tracker_service.h
|
| index 68cf723d2acdc280c7baa66d02c25e24b48e2fdc..d973d1cf91cbcf1d81099696068a5331b69450fc 100644
|
| --- a/components/signin/core/browser/account_tracker_service.h
|
| +++ b/components/signin/core/browser/account_tracker_service.h
|
| @@ -59,7 +59,7 @@ class AccountTrackerService : public KeyedService,
|
| virtual ~AccountTrackerService();
|
|
|
| // KeyedService implementation.
|
| - virtual void Shutdown() OVERRIDE;
|
| + virtual void Shutdown() override;
|
|
|
| void AddObserver(Observer* observer);
|
| void RemoveObserver(Observer* observer);
|
| @@ -91,8 +91,8 @@ class AccountTrackerService : public KeyedService,
|
| void OnUserInfoFetchFailure(AccountInfoFetcher* fetcher);
|
|
|
| // OAuth2TokenService::Observer implementation.
|
| - virtual void OnRefreshTokenAvailable(const std::string& account_id) OVERRIDE;
|
| - virtual void OnRefreshTokenRevoked(const std::string& account_id) OVERRIDE;
|
| + virtual void OnRefreshTokenAvailable(const std::string& account_id) override;
|
| + virtual void OnRefreshTokenRevoked(const std::string& account_id) override;
|
|
|
| struct AccountState {
|
| AccountInfo info;
|
|
|