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

Unified Diff: chrome/browser/signin/fake_profile_oauth2_token_service.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
« no previous file with comments | « chrome/browser/signin/fake_account_tracker_service.h ('k') | chrome/browser/signin/fake_signin_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/fake_profile_oauth2_token_service.h
diff --git a/chrome/browser/signin/fake_profile_oauth2_token_service.h b/chrome/browser/signin/fake_profile_oauth2_token_service.h
index 3a3523085ce31847da48ee26ad5650c7077e3ce8..4eadb7d4817ec3f7d8341a3f59df00222dc8abf6 100644
--- a/chrome/browser/signin/fake_profile_oauth2_token_service.h
+++ b/chrome/browser/signin/fake_profile_oauth2_token_service.h
@@ -60,17 +60,17 @@ class FakeProfileOAuth2TokenService
// Overriden to make sure it works on Android.
virtual bool RefreshTokenIsAvailable(
- const std::string& account_id) const OVERRIDE;
+ const std::string& account_id) const override;
// Overriden to make sure it works on iOS.
- virtual void LoadCredentials(const std::string& primary_account_id) OVERRIDE;
+ virtual void LoadCredentials(const std::string& primary_account_id) override;
- virtual std::vector<std::string> GetAccounts() OVERRIDE;
+ virtual std::vector<std::string> GetAccounts() override;
// Overriden to make sure it works on Android. Simply calls
// IssueRefreshToken().
virtual void UpdateCredentials(const std::string& account_id,
- const std::string& refresh_token) OVERRIDE;
+ const std::string& refresh_token) override;
// Sets the current refresh token. If |token| is non-empty, this will invoke
// OnRefreshTokenAvailable() on all Observers, otherwise this will invoke
@@ -121,19 +121,19 @@ class FakeProfileOAuth2TokenService
net::URLRequestContextGetter* getter,
const std::string& client_id,
const std::string& client_secret,
- const ScopeSet& scopes) OVERRIDE;
+ const ScopeSet& scopes) override;
virtual OAuth2AccessTokenFetcher* CreateAccessTokenFetcher(
const std::string& account_id,
net::URLRequestContextGetter* getter,
- OAuth2AccessTokenConsumer* consumer) OVERRIDE;
+ OAuth2AccessTokenConsumer* consumer) override;
virtual void InvalidateOAuth2Token(const std::string& account_id,
const std::string& client_id,
const ScopeSet& scopes,
- const std::string& access_token) OVERRIDE;
+ const std::string& access_token) override;
- virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
+ virtual net::URLRequestContextGetter* GetRequestContext() override;
private:
// Helper function to complete pending requests - if |all_scopes| is true,
« no previous file with comments | « chrome/browser/signin/fake_account_tracker_service.h ('k') | chrome/browser/signin/fake_signin_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698