Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6581)

Unified Diff: chrome/browser/chromeos/login/signin/auth_sync_observer.h

Issue 856493004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698