| Index: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
|
| diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
|
| index 7285b2c9818e17a92f4fc11e5cf2a9c878760a62..91416507356b0cd0553b706c7b6c26f3ead6bee2 100644
|
| --- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
|
| +++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
|
| @@ -28,14 +28,14 @@ class BrowserContext;
|
| }
|
|
|
| namespace cryptauth {
|
| +class BluetoothThrottler;
|
| +class Connection;
|
| class ExternalDeviceInfo;
|
| class SecureMessageDelegate;
|
| }
|
|
|
| namespace proximity_auth {
|
| -class Connection;
|
| class BluetoothLowEnergyConnectionFinder;
|
| -class BluetoothThrottler;
|
| }
|
|
|
| namespace extensions {
|
| @@ -477,8 +477,7 @@ class EasyUnlockPrivateFindSetupConnectionFunction
|
|
|
| // Called when the connection with the remote device advertising the setup
|
| // service was found.
|
| - void OnConnectionFound(
|
| - std::unique_ptr<proximity_auth::Connection> connection);
|
| + void OnConnectionFound(std::unique_ptr<cryptauth::Connection> connection);
|
|
|
| // Callback when waiting for |connection_finder_| to return.
|
| void OnConnectionFinderTimedOut();
|
| @@ -488,7 +487,7 @@ class EasyUnlockPrivateFindSetupConnectionFunction
|
| connection_finder_;
|
|
|
| // The connection throttler passed to the BLE connection finder.
|
| - std::unique_ptr<proximity_auth::BluetoothThrottler> bluetooth_throttler_;
|
| + std::unique_ptr<cryptauth::BluetoothThrottler> bluetooth_throttler_;
|
|
|
| // Used for timing out when waiting for the connection finder to return.
|
| std::unique_ptr<base::Timer> timer_;
|
|
|