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

Unified Diff: components/proximity_auth/device_to_device_authenticator.cc

Issue 2502343003: Moved //components/proximity_auth/cryptauth to //components/cryptauth. (Closed)
Patch Set: Fixed proto #includes. Created 4 years, 1 month 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/device_to_device_authenticator.cc
diff --git a/components/proximity_auth/device_to_device_authenticator.cc b/components/proximity_auth/device_to_device_authenticator.cc
index 4dbe7fd5ce36c8e4aa0af8677f0cab840c160556..62a08e2cd620ff3f5d6ec0ec90be8bd31021a1e5 100644
--- a/components/proximity_auth/device_to_device_authenticator.cc
+++ b/components/proximity_auth/device_to_device_authenticator.cc
@@ -9,8 +9,8 @@
#include "base/memory/ptr_util.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
+#include "components/cryptauth/secure_message_delegate.h"
#include "components/proximity_auth/connection.h"
-#include "components/proximity_auth/cryptauth/secure_message_delegate.h"
#include "components/proximity_auth/device_to_device_initiator_operations.h"
#include "components/proximity_auth/device_to_device_secure_context.h"
#include "components/proximity_auth/logging/logging.h"
@@ -35,7 +35,7 @@ const char kPermitIdPrefix[] = "permit://google.com/easyunlock/v1/";
DeviceToDeviceAuthenticator::DeviceToDeviceAuthenticator(
Connection* connection,
const std::string& account_id,
- std::unique_ptr<SecureMessageDelegate> secure_message_delegate)
+ std::unique_ptr<cryptauth::SecureMessageDelegate> secure_message_delegate)
: connection_(connection),
account_id_(account_id),
secure_message_delegate_(std::move(secure_message_delegate)),

Powered by Google App Engine
This is Rietveld 408576698