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

Unified Diff: components/proximity_auth/device_to_device_operations_unittest.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_operations_unittest.cc
diff --git a/components/proximity_auth/device_to_device_operations_unittest.cc b/components/proximity_auth/device_to_device_operations_unittest.cc
index ac0252454ec6e697f9d1a94a144e1a2caee8030c..6a48bfeaff8f6272e34691355489be1920944e8e 100644
--- a/components/proximity_auth/device_to_device_operations_unittest.cc
+++ b/components/proximity_auth/device_to_device_operations_unittest.cc
@@ -5,7 +5,7 @@
#include "base/base64url.h"
#include "base/bind.h"
#include "base/macros.h"
-#include "components/proximity_auth/cryptauth/fake_secure_message_delegate.h"
+#include "components/cryptauth/fake_secure_message_delegate.h"
#include "components/proximity_auth/device_to_device_initiator_operations.h"
#include "components/proximity_auth/device_to_device_responder_operations.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -76,7 +76,7 @@ class ProximityAuthDeviceToDeviceOperationsTest : public testing::Test {
secure_message_delegate_.GetPrivateKeyForPublicKey(
remote_session_public_key_);
- // Note: FakeSecureMessageDelegate functions are synchronous.
+ // Note: cryptauth::FakeSecureMessageDelegate functions are synchronous.
secure_message_delegate_.DeriveKey(
local_session_private_key_, remote_session_public_key_,
base::Bind(&SaveMessageResult, &session_symmetric_key_));
@@ -123,7 +123,7 @@ class ProximityAuthDeviceToDeviceOperationsTest : public testing::Test {
return local_auth_message;
}
- FakeSecureMessageDelegate secure_message_delegate_;
+ cryptauth::FakeSecureMessageDelegate secure_message_delegate_;
std::string persistent_symmetric_key_;
std::string local_session_public_key_;

Powered by Google App Engine
This is Rietveld 408576698