Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: device/bluetooth/bluetooth_discovery_filter.h

Issue 2567903004: Replace ScopedVector/ScopedPtrHashMap with std::vector and std::unordered_map (Closed)
Patch Set: Mac bustage Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluetooth_discovery_filter.h
diff --git a/device/bluetooth/bluetooth_discovery_filter.h b/device/bluetooth/bluetooth_discovery_filter.h
index 1c83ee72e9da079be8e648d45aee9d262f0aed91..7dab9e9badfed63f2bc88fe78710feb68533c7ce 100644
--- a/device/bluetooth/bluetooth_discovery_filter.h
+++ b/device/bluetooth/bluetooth_discovery_filter.h
@@ -62,7 +62,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDiscoveryFilter {
std::unique_ptr<int16_t> rssi_;
std::unique_ptr<uint16_t> pathloss_;
BluetoothTransport transport_;
- ScopedVector<device::BluetoothUUID> uuids_;
+ std::vector<device::BluetoothUUID> uuids_;
DISALLOW_COPY_AND_ASSIGN(BluetoothDiscoveryFilter);
};

Powered by Google App Engine
This is Rietveld 408576698