| Index: chrome/browser/chromeos/login/signin/auth_sync_observer.h
|
| diff --git a/chrome/browser/chromeos/login/signin/auth_sync_observer.h b/chrome/browser/chromeos/login/signin/auth_sync_observer.h
|
| index b8e2f3e2784912cf0d88e5fec9b5f468e17616ce..b26cfaa8e8e9e2c62f2feba3aff820b79028da56 100644
|
| --- a/chrome/browser/chromeos/login/signin/auth_sync_observer.h
|
| +++ b/chrome/browser/chromeos/login/signin/auth_sync_observer.h
|
| @@ -22,7 +22,7 @@ class AuthSyncObserver : public KeyedService,
|
| public ProfileSyncServiceObserver {
|
| public:
|
| explicit AuthSyncObserver(Profile* user_profile);
|
| - virtual ~AuthSyncObserver();
|
| + ~AuthSyncObserver() override;
|
|
|
| void StartObserving();
|
|
|
| @@ -30,10 +30,10 @@ class AuthSyncObserver : public KeyedService,
|
| friend class AuthSyncObserverFactory;
|
|
|
| // KeyedService implementation.
|
| - virtual void Shutdown() override;
|
| + void Shutdown() override;
|
|
|
| // ProfileSyncServiceObserver implementation.
|
| - virtual void OnStateChanged() override;
|
| + void OnStateChanged() override;
|
|
|
| // Called on attempt to restore supervised user token.
|
| void OnSupervisedTokenLoaded(const std::string& token);
|
|
|