Index: device/bluetooth/bluetooth_adapter_win.h |
diff --git a/device/bluetooth/bluetooth_adapter_win.h b/device/bluetooth/bluetooth_adapter_win.h |
index d9b8570bb5518389ed98cf6dd1ea97519dc476ad..b0558a6f695f8294f4533e8520c01defc704833f 100644 |
--- a/device/bluetooth/bluetooth_adapter_win.h |
+++ b/device/bluetooth/bluetooth_adapter_win.h |
@@ -16,7 +16,6 @@ |
#include "base/containers/hash_tables.h" |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_vector.h" |
#include "base/memory/weak_ptr.h" |
#include "base/threading/thread_checker.h" |
#include "device/bluetooth/bluetooth_adapter.h" |
@@ -81,8 +80,9 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothAdapterWin |
const BluetoothTaskManagerWin::AdapterState& state) override; |
void DiscoveryStarted(bool success) override; |
void DiscoveryStopped() override; |
- void DevicesPolled(const ScopedVector<BluetoothTaskManagerWin::DeviceState>& |
- devices) override; |
+ void DevicesPolled( |
+ const std::vector<std::unique_ptr<BluetoothTaskManagerWin::DeviceState>>& |
+ devices) override; |
const scoped_refptr<base::SequencedTaskRunner>& ui_task_runner() const { |
return ui_task_runner_; |