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

Unified Diff: components/cryptauth/mock_cryptauth_client.h

Issue 2888053003: Network traffic annotation added to OAuth2ApiCallFlow and its subclasses. (Closed)
Patch Set: Annotations updated. Created 3 years, 6 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/cryptauth/mock_cryptauth_client.h
diff --git a/components/cryptauth/mock_cryptauth_client.h b/components/cryptauth/mock_cryptauth_client.h
index ddc40e9053712848e5b8b42cadc0f275f6368307..d5d3b24a2e79d579f8681782f2a826c38aa0b7c3 100644
--- a/components/cryptauth/mock_cryptauth_client.h
+++ b/components/cryptauth/mock_cryptauth_client.h
@@ -19,18 +19,22 @@ class MockCryptAuthClient : public CryptAuthClient {
~MockCryptAuthClient() override;
// CryptAuthClient:
- MOCK_METHOD3(GetMyDevices,
+ MOCK_METHOD4(GetMyDevices,
void(const GetMyDevicesRequest& request,
const GetMyDevicesCallback& callback,
- const ErrorCallback& error_callback));
+ const ErrorCallback& error_callback,
+ const net::PartialNetworkTrafficAnnotationTag&
+ partial_traffic_annotation));
MOCK_METHOD3(FindEligibleUnlockDevices,
void(const FindEligibleUnlockDevicesRequest& request,
const FindEligibleUnlockDevicesCallback& callback,
const ErrorCallback& error_callback));
- MOCK_METHOD3(SendDeviceSyncTickle,
+ MOCK_METHOD4(SendDeviceSyncTickle,
void(const SendDeviceSyncTickleRequest& request,
const SendDeviceSyncTickleCallback& callback,
- const ErrorCallback& error_callback));
+ const ErrorCallback& error_callback,
+ const net::PartialNetworkTrafficAnnotationTag&
+ partial_traffic_annotation));
MOCK_METHOD3(ToggleEasyUnlock,
void(const ToggleEasyUnlockRequest& request,
const ToggleEasyUnlockCallback& callback,
« no previous file with comments | « components/cryptauth/cryptauth_device_manager_unittest.cc ('k') | components/proximity_auth/webui/reachable_phone_flow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698