| 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_;
|
|
|