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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_service_mac.mm

Issue 2572593002: [counting_allocator] Chrome changes.
Patch Set: Surface max_size; instrument flat_set. Created 3 years, 9 months 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
« no previous file with comments | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_remote_gatt_service_mac.mm
diff --git a/device/bluetooth/bluetooth_remote_gatt_service_mac.mm b/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
index 505321e6aa15a60eb11cd9cf1f988f6c3a5d2d3d..ee246b4ca2a7253617bcd2a684193c4765e0dd41 100644
--- a/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
+++ b/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
@@ -102,7 +102,7 @@ void BluetoothRemoteGattServiceMac::DidDiscoverCharacteristics() {
new BluetoothRemoteGattCharacteristicMac(this, cb_characteristic);
const std::string& identifier = gatt_characteristic_mac->GetIdentifier();
auto result_iter = gatt_characteristic_macs_.insert(
- {identifier, base::WrapUnique(gatt_characteristic_mac)});
+ std::make_pair(identifier, base::WrapUnique(gatt_characteristic_mac)));
DCHECK(result_iter.second);
gatt_characteristic_mac->DiscoverDescriptors();
GetMacAdapter()->NotifyGattCharacteristicAdded(gatt_characteristic_mac);
« no previous file with comments | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698