Index: device/bluetooth/test/mock_bluetooth_device.h |
diff --git a/device/bluetooth/test/mock_bluetooth_device.h b/device/bluetooth/test/mock_bluetooth_device.h |
index f7a620b59c0b48c201ef6b5fe7ae731418794a83..b174ca7853d4ec168fd894fd6e452134ce71e270 100644 |
--- a/device/bluetooth/test/mock_bluetooth_device.h |
+++ b/device/bluetooth/test/mock_bluetooth_device.h |
@@ -9,8 +9,8 @@ |
#include <memory> |
#include <string> |
+#include <vector> |
-#include "base/memory/scoped_vector.h" |
#include "base/optional.h" |
#include "base/strings/string16.h" |
#include "device/bluetooth/bluetooth_common.h" |
@@ -136,7 +136,7 @@ class MockBluetoothDevice : public BluetoothDevice { |
// Used by tests to save callbacks that will be run in the future. |
std::queue<base::Closure> pending_callbacks_; |
- ScopedVector<MockBluetoothGattService> mock_services_; |
+ std::vector<std::unique_ptr<MockBluetoothGattService>> mock_services_; |
}; |
} // namespace device |