| 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 d973d1cf91cbcf1d81099696068a5331b69450fc..a6f403e9ea26f4705ac7e753e93a53552ed41da0 100644
|
| --- a/components/signin/core/browser/account_tracker_service.h
|
| +++ b/components/signin/core/browser/account_tracker_service.h
|
| @@ -56,10 +56,10 @@ class AccountTrackerService : public KeyedService,
|
| };
|
|
|
| AccountTrackerService();
|
| - virtual ~AccountTrackerService();
|
| + ~AccountTrackerService() override;
|
|
|
| // KeyedService implementation.
|
| - virtual void Shutdown() override;
|
| + 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;
|
| + void OnRefreshTokenAvailable(const std::string& account_id) override;
|
| + void OnRefreshTokenRevoked(const std::string& account_id) override;
|
|
|
| struct AccountState {
|
| AccountInfo info;
|
|
|