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

Unified Diff: components/signin/core/browser/signin_tracker.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: components/signin/core/browser/signin_tracker.h
diff --git a/components/signin/core/browser/signin_tracker.h b/components/signin/core/browser/signin_tracker.h
index a45dedf86f8a0625ed37deeb88825c623c081129..dfe6ce7df4d2f7a496e0e24229ffc293a233f5aa 100644
--- a/components/signin/core/browser/signin_tracker.h
+++ b/components/signin/core/browser/signin_tracker.h
@@ -75,23 +75,22 @@ class SigninTracker : public SigninManagerBase::Observer,
AccountReconcilor* account_reconcilor,
SigninClient* client,
Observer* observer);
- virtual ~SigninTracker();
+ ~SigninTracker() override;
// SigninManagerBase::Observer implementation.
- virtual void GoogleSigninFailed(const GoogleServiceAuthError& error) override;
+ void GoogleSigninFailed(const GoogleServiceAuthError& error) override;
// 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;
private:
// Initializes this by adding notifications and observers.
void Initialize();
// MergeSessionHelper::Observer implementation.
- virtual void MergeSessionCompleted(
- const std::string& account_id,
- const GoogleServiceAuthError& error) override;
+ void MergeSessionCompleted(const std::string& account_id,
+ const GoogleServiceAuthError& error) override;
// The classes whose collective signin status we are tracking.
ProfileOAuth2TokenService* token_service_;
« no previous file with comments | « components/signin/core/browser/signin_oauth_helper.h ('k') | components/signin/core/browser/test_signin_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698