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

Unified Diff: components/signin/core/browser/signin_account_id_helper.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_account_id_helper.h
diff --git a/components/signin/core/browser/signin_account_id_helper.h b/components/signin/core/browser/signin_account_id_helper.h
index 680d463990f649fcd589ad02befe5fc4758c11d4..8c938960a1668d9f9b0d06a7e48eb1cb56858b30 100644
--- a/components/signin/core/browser/signin_account_id_helper.h
+++ b/components/signin/core/browser/signin_account_id_helper.h
@@ -24,14 +24,14 @@ class SigninAccountIdHelper : public SigninManagerBase::Observer,
SigninAccountIdHelper(SigninClient* client,
ProfileOAuth2TokenService* token_service,
SigninManagerBase* signin_manager);
- virtual ~SigninAccountIdHelper();
+ ~SigninAccountIdHelper() override;
// SigninManagerBase::Observer:
- virtual void GoogleSignedOut(const std::string& account_id,
- const std::string& username) override;
+ void GoogleSignedOut(const std::string& account_id,
+ const std::string& username) override;
// OAuth2TokenService::Observer:
- virtual void OnRefreshTokenAvailable(const std::string& account_id) override;
+ void OnRefreshTokenAvailable(const std::string& account_id) override;
// Disables network requests for testing to avoid messing up with irrelevant
// tests.

Powered by Google App Engine
This is Rietveld 408576698