| Index: components/cryptauth/fake_connection.cc
|
| diff --git a/components/proximity_auth/fake_connection.cc b/components/cryptauth/fake_connection.cc
|
| similarity index 89%
|
| rename from components/proximity_auth/fake_connection.cc
|
| rename to components/cryptauth/fake_connection.cc
|
| index c8e22fec942f0f0b4d492c8da2667999940ee23a..650f62e508d9bf34afb9d7ce798b3ca90bac042f 100644
|
| --- a/components/proximity_auth/fake_connection.cc
|
| +++ b/components/cryptauth/fake_connection.cc
|
| @@ -2,14 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "components/proximity_auth/fake_connection.h"
|
| +#include "components/cryptauth/fake_connection.h"
|
|
|
| #include <utility>
|
|
|
| #include "base/memory/ptr_util.h"
|
| -#include "components/proximity_auth/wire_message.h"
|
| +#include "components/cryptauth/wire_message.h"
|
|
|
| -namespace proximity_auth {
|
| +namespace cryptauth {
|
|
|
| FakeConnection::FakeConnection(const cryptauth::RemoteDevice& remote_device)
|
| : Connection(remote_device) {
|
| @@ -53,4 +53,4 @@ std::unique_ptr<WireMessage> FakeConnection::DeserializeWireMessage(
|
| return base::MakeUnique<WireMessage>(pending_payload_);
|
| }
|
|
|
| -} // namespace proximity_auth
|
| +} // namespace cryptauth
|
|
|