| Index: components/proximity_auth/throttled_bluetooth_connection_finder.cc
|
| diff --git a/components/proximity_auth/throttled_bluetooth_connection_finder.cc b/components/proximity_auth/throttled_bluetooth_connection_finder.cc
|
| index a02525936d3851018189734bb1b530c34dbc63db..7d1ffe7ddf1dc85915bf7f19633cc47acc9a7598 100644
|
| --- a/components/proximity_auth/throttled_bluetooth_connection_finder.cc
|
| +++ b/components/proximity_auth/throttled_bluetooth_connection_finder.cc
|
| @@ -10,15 +10,16 @@
|
| #include "base/location.h"
|
| #include "base/task_runner.h"
|
| #include "base/time/time.h"
|
| +#include "components/cryptauth/bluetooth_throttler.h"
|
| +#include "components/cryptauth/connection.h"
|
| #include "components/proximity_auth/bluetooth_connection_finder.h"
|
| -#include "components/proximity_auth/bluetooth_throttler.h"
|
|
|
| namespace proximity_auth {
|
|
|
| ThrottledBluetoothConnectionFinder::ThrottledBluetoothConnectionFinder(
|
| std::unique_ptr<BluetoothConnectionFinder> connection_finder,
|
| scoped_refptr<base::TaskRunner> task_runner,
|
| - BluetoothThrottler* throttler)
|
| + cryptauth::BluetoothThrottler* throttler)
|
| : connection_finder_(std::move(connection_finder)),
|
| task_runner_(task_runner),
|
| throttler_(throttler),
|
| @@ -48,7 +49,7 @@ void ThrottledBluetoothConnectionFinder::Find(
|
|
|
| void ThrottledBluetoothConnectionFinder::OnConnection(
|
| const ConnectionCallback& connection_callback,
|
| - std::unique_ptr<Connection> connection) {
|
| + std::unique_ptr<cryptauth::Connection> connection) {
|
| throttler_->OnConnection(connection.get());
|
| connection_callback.Run(std::move(connection));
|
| }
|
|
|