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

Unified Diff: components/proximity_auth/cryptauth/cryptauth_api_call_flow.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/proximity_auth/cryptauth/cryptauth_api_call_flow.h
diff --git a/components/proximity_auth/cryptauth/cryptauth_api_call_flow.h b/components/proximity_auth/cryptauth/cryptauth_api_call_flow.h
index 53ae29b7f0af0f61faa768402158cd2398dac5c1..3dd8f8cf6cade3c5a10582e0eb044300e6a4e7d1 100644
--- a/components/proximity_auth/cryptauth/cryptauth_api_call_flow.h
+++ b/components/proximity_auth/cryptauth/cryptauth_api_call_flow.h
@@ -23,7 +23,7 @@ class CryptAuthApiCallFlow : public OAuth2ApiCallFlow {
typedef base::Callback<void(const std::string& error_message)> ErrorCallback;
CryptAuthApiCallFlow(const GURL& request_url);
- virtual ~CryptAuthApiCallFlow();
+ ~CryptAuthApiCallFlow() override;
// Starts the API call.
// context: The URL context used to make the request.
@@ -44,11 +44,11 @@ class CryptAuthApiCallFlow : public OAuth2ApiCallFlow {
using OAuth2ApiCallFlow::Start;
// google_apis::OAuth2ApiCallFlow:
- virtual GURL CreateApiCallUrl() override;
- virtual std::string CreateApiCallBody() override;
- virtual std::string CreateApiCallBodyContentType() override;
- virtual void ProcessApiCallSuccess(const net::URLFetcher* source) override;
- virtual void ProcessApiCallFailure(const net::URLFetcher* source) override;
+ GURL CreateApiCallUrl() override;
+ std::string CreateApiCallBody() override;
+ std::string CreateApiCallBodyContentType() override;
+ void ProcessApiCallSuccess(const net::URLFetcher* source) override;
+ void ProcessApiCallFailure(const net::URLFetcher* source) override;
private:
// The URL of the CryptAuth endpoint serving the request.

Powered by Google App Engine
This is Rietveld 408576698