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

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

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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: chrome/browser/chromeos/login/signin/oauth2_token_fetcher.h
diff --git a/chrome/browser/chromeos/login/signin/oauth2_token_fetcher.h b/chrome/browser/chromeos/login/signin/oauth2_token_fetcher.h
index c02db1032046d9686662513c67cd1cf7be69e669..5dd2e6d7f5eb6ece0859b0f6ef157e69dd0b7428 100644
--- a/chrome/browser/chromeos/login/signin/oauth2_token_fetcher.h
+++ b/chrome/browser/chromeos/login/signin/oauth2_token_fetcher.h
@@ -36,7 +36,7 @@ class OAuth2TokenFetcher : public base::SupportsWeakPtr<OAuth2TokenFetcher>,
OAuth2TokenFetcher(OAuth2TokenFetcher::Delegate* delegate,
net::URLRequestContextGetter* context_getter);
- virtual ~OAuth2TokenFetcher();
+ ~OAuth2TokenFetcher() override;
void StartExchangeFromCookies(const std::string& session_index,
const std::string& signin_scoped_device_id);
@@ -52,10 +52,9 @@ class OAuth2TokenFetcher : public base::SupportsWeakPtr<OAuth2TokenFetcher>,
const base::Closure& error_handler);
// GaiaAuthConsumer overrides.
- virtual void OnClientOAuthSuccess(
+ void OnClientOAuthSuccess(
const GaiaAuthConsumer::ClientOAuthResult& result) override;
- virtual void OnClientOAuthFailure(
- const GoogleServiceAuthError& error) override;
+ void OnClientOAuthFailure(const GoogleServiceAuthError& error) override;
OAuth2TokenFetcher::Delegate* delegate_;
GaiaAuthConsumer::ClientOAuthResult oauth_tokens_;
« no previous file with comments | « chrome/browser/chromeos/login/signin/oauth2_login_verifier.h ('k') | chrome/browser/chromeos/profiles/profile_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698