| Index: components/proximity_auth/ble/proximity_auth_ble_system.h
|
| diff --git a/components/proximity_auth/ble/proximity_auth_ble_system.h b/components/proximity_auth/ble/proximity_auth_ble_system.h
|
| index ab59bae45f141a4452f5cf7f7220db2c72a2fd25..29ba6623f1085ad8d1a89f2ef4693795b3f12154 100644
|
| --- a/components/proximity_auth/ble/proximity_auth_ble_system.h
|
| +++ b/components/proximity_auth/ble/proximity_auth_ble_system.h
|
| @@ -6,6 +6,9 @@
|
| #define COMPONENTS_PROXIMITY_AUTH_BLE_PROXIMITY_AUTH_BLE_SYSTEM_H_
|
|
|
| #include "base/macros.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| +
|
| +#include "components/proximity_auth/ble/bluetooth_low_energy_connection_finder.h"
|
|
|
| namespace proximity_auth {
|
|
|
| @@ -19,6 +22,8 @@ class ProximityAuthBleSystem {
|
| ~ProximityAuthBleSystem();
|
|
|
| private:
|
| + scoped_ptr<BluetoothLowEnergyConnectionFinder> connection_finder_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ProximityAuthBleSystem);
|
| };
|
|
|
|
|