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

Unified Diff: chrome/service/cloud_print/cloud_print_auth.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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
« no previous file with comments | « chrome/plugin/chrome_content_plugin_client.h ('k') | chrome/service/cloud_print/cloud_print_connector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/cloud_print_auth.h
diff --git a/chrome/service/cloud_print/cloud_print_auth.h b/chrome/service/cloud_print/cloud_print_auth.h
index f78ecfc217492c2a1f047735391c070d579ac457..4a9f24d2b733bd05d44826909fe744bc0818b164 100644
--- a/chrome/service/cloud_print/cloud_print_auth.h
+++ b/chrome/service/cloud_print/cloud_print_auth.h
@@ -56,26 +56,26 @@ class CloudPrintAuth
void RefreshAccessToken();
// gaia::GaiaOAuthClient::Delegate implementation.
- virtual void OnGetTokensResponse(const std::string& refresh_token,
- const std::string& access_token,
- int expires_in_seconds) override;
- virtual void OnRefreshTokenResponse(const std::string& access_token,
- int expires_in_seconds) override;
- virtual void OnOAuthError() override;
- virtual void OnNetworkError(int response_code) override;
+ void OnGetTokensResponse(const std::string& refresh_token,
+ const std::string& access_token,
+ int expires_in_seconds) override;
+ void OnRefreshTokenResponse(const std::string& access_token,
+ int expires_in_seconds) override;
+ void OnOAuthError() override;
+ void OnNetworkError(int response_code) override;
// CloudPrintURLFetcher::Delegate implementation.
- virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
+ CloudPrintURLFetcher::ResponseAction HandleJSONData(
const net::URLFetcher* source,
const GURL& url,
base::DictionaryValue* json_data,
bool succeeded) override;
- virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() override;
- virtual std::string GetAuthHeader() override;
+ CloudPrintURLFetcher::ResponseAction OnRequestAuthError() override;
+ std::string GetAuthHeader() override;
private:
friend class base::RefCountedThreadSafe<CloudPrintAuth>;
- virtual ~CloudPrintAuth();
+ ~CloudPrintAuth() override;
Client* client_;
gaia::OAuthClientInfo oauth_client_info_;
« no previous file with comments | « chrome/plugin/chrome_content_plugin_client.h ('k') | chrome/service/cloud_print/cloud_print_connector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698