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

Unified Diff: components/proximity_auth/cryptauth/cryptauth_api_call_flow.h

Issue 738593002: Introduce CryptAuthClient, a class capable of performing all CryptAuth APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 3dd8f8cf6cade3c5a10582e0eb044300e6a4e7d1..6584bf84d098d5d513e7de71c8215c5eaa4fafe5 100644
--- a/components/proximity_auth/cryptauth/cryptauth_api_call_flow.h
+++ b/components/proximity_auth/cryptauth/cryptauth_api_call_flow.h
@@ -32,11 +32,11 @@ class CryptAuthApiCallFlow : public OAuth2ApiCallFlow {
// result_callback: Called when the flow completes successfully with a
// serialized response proto.
// error_callback: Called when the flow completes with an error.
- void Start(net::URLRequestContextGetter* context,
- const std::string& access_token,
- const std::string& serialized_request,
- ResultCallback result_callback,
- ErrorCallback error_callback);
+ virtual void Start(net::URLRequestContextGetter* context,
+ const std::string& access_token,
+ const std::string& serialized_request,
+ ResultCallback result_callback,
+ ErrorCallback error_callback);
protected:
// Reduce the visibility of OAuth2ApiCallFlow::Start() to avoid exposing

Powered by Google App Engine
This is Rietveld 408576698