| Index: device/bluetooth/bluetooth_adapter_unittest.cc
|
| diff --git a/device/bluetooth/bluetooth_adapter_unittest.cc b/device/bluetooth/bluetooth_adapter_unittest.cc
|
| index 5217f6edcdfda58fbad879b69d17ac327443f3e3..95a10f3faa0d56a21609b4803818028d06276a69 100644
|
| --- a/device/bluetooth/bluetooth_adapter_unittest.cc
|
| +++ b/device/bluetooth/bluetooth_adapter_unittest.cc
|
| @@ -9,6 +9,7 @@
|
|
|
| #include <memory>
|
| #include <utility>
|
| +#include <vector>
|
|
|
| #include "base/bind.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -114,7 +115,7 @@ class TestBluetoothAdapter : public BluetoothAdapter {
|
|
|
| void TestErrorCallback() {}
|
|
|
| - ScopedVector<BluetoothDiscoverySession> discovery_sessions_;
|
| + std::vector<std::unique_ptr<BluetoothDiscoverySession>> discovery_sessions_;
|
|
|
| void TestOnStartDiscoverySession(
|
| std::unique_ptr<device::BluetoothDiscoverySession> discovery_session) {
|
|
|