| Index: components/proximity_auth/bluetooth_connection.cc
|
| diff --git a/components/proximity_auth/bluetooth_connection.cc b/components/proximity_auth/bluetooth_connection.cc
|
| index b40421e19699f0d7e034aca8a4583cbd98e31ea6..511e7ef5fd06b8c61bdcf03b55da9780a5a12680 100644
|
| --- a/components/proximity_auth/bluetooth_connection.cc
|
| +++ b/components/proximity_auth/bluetooth_connection.cc
|
| @@ -11,8 +11,8 @@
|
| #include "base/numerics/safe_conversions.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/threading/thread_task_runner_handle.h"
|
| +#include "components/cryptauth/remote_device.h"
|
| #include "components/proximity_auth/logging/logging.h"
|
| -#include "components/proximity_auth/remote_device.h"
|
| #include "components/proximity_auth/wire_message.h"
|
| #include "device/bluetooth/bluetooth_adapter_factory.h"
|
| #include "device/bluetooth/bluetooth_device.h"
|
| @@ -23,10 +23,10 @@ namespace {
|
| const int kReceiveBufferSizeBytes = 1024;
|
| }
|
|
|
| -BluetoothConnection::BluetoothConnection(const RemoteDevice& remote_device,
|
| - const device::BluetoothUUID& uuid)
|
| - : Connection(remote_device), uuid_(uuid), weak_ptr_factory_(this) {
|
| -}
|
| +BluetoothConnection::BluetoothConnection(
|
| + const cryptauth::RemoteDevice& remote_device,
|
| + const device::BluetoothUUID& uuid)
|
| + : Connection(remote_device), uuid_(uuid), weak_ptr_factory_(this) {}
|
|
|
| BluetoothConnection::~BluetoothConnection() {
|
| if (status() != DISCONNECTED)
|
|
|