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

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

Issue 623133002: replace OVERRIDE and FINAL with override and 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/profile_oauth2_token_service.h
diff --git a/components/signin/core/browser/profile_oauth2_token_service.h b/components/signin/core/browser/profile_oauth2_token_service.h
index 087818492754d27afc20e5536e605807d285859e..b6f133f946a6bd23c10ef2c8f9484ffde0499d34 100644
--- a/components/signin/core/browser/profile_oauth2_token_service.h
+++ b/components/signin/core/browser/profile_oauth2_token_service.h
@@ -43,10 +43,10 @@ class ProfileOAuth2TokenService : public OAuth2TokenService,
virtual void Initialize(SigninClient* client);
// KeyedService implementation.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// Lists account IDs of all accounts with a refresh token.
- virtual std::vector<std::string> GetAccounts() OVERRIDE;
+ virtual std::vector<std::string> GetAccounts() override;
// Loads credentials from a backing persistent store to make them available
// after service is used between profile restarts.
@@ -85,13 +85,13 @@ class ProfileOAuth2TokenService : public OAuth2TokenService,
// concrete class.
// Simply returns NULL and should be overriden by subsclasses.
- virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
+ virtual net::URLRequestContextGetter* GetRequestContext() override;
// Updates the internal cache of the result from the most-recently-completed
// auth request (used for reporting errors to the user).
virtual void UpdateAuthError(
const std::string& account_id,
- const GoogleServiceAuthError& error) OVERRIDE;
+ const GoogleServiceAuthError& error) override;
private:
// The client with which this instance was initialized, or NULL.

Powered by Google App Engine
This is Rietveld 408576698