| Index: device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
|
| diff --git a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
|
| index d40c0066584448ba65a61e67aab176efba12cb88..352fa1efda3d0687fc3811ef40321f07c98047e0 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
|
| @@ -113,7 +113,7 @@ BluetoothRemoteGattCharacteristicAndroid::GetDescriptors() const {
|
| EnsureDescriptorsCreated();
|
| std::vector<BluetoothRemoteGattDescriptor*> descriptors;
|
| for (const auto& map_iter : descriptors_)
|
| - descriptors.push_back(map_iter.second);
|
| + descriptors.push_back(map_iter.second.get());
|
| return descriptors;
|
| }
|
|
|
| @@ -124,7 +124,7 @@ BluetoothRemoteGattCharacteristicAndroid::GetDescriptor(
|
| const auto& iter = descriptors_.find(identifier);
|
| if (iter == descriptors_.end())
|
| return nullptr;
|
| - return iter->second;
|
| + return iter->second.get();
|
| }
|
|
|
| void BluetoothRemoteGattCharacteristicAndroid::ReadRemoteCharacteristic(
|
| @@ -240,13 +240,12 @@ void BluetoothRemoteGattCharacteristicAndroid::CreateGattRemoteDescriptor(
|
| chrome_bluetooth_device) {
|
| std::string instanceIdString =
|
| base::android::ConvertJavaStringToUTF8(env, instanceId);
|
| + DCHECK(!base::ContainsKey(descriptors_, instanceIdString));
|
| + auto descriptor = BluetoothRemoteGattDescriptorAndroid::Create(
|
| + instanceIdString, bluetooth_gatt_descriptor_wrapper,
|
| + chrome_bluetooth_device);
|
|
|
| - DCHECK(!descriptors_.contains(instanceIdString));
|
| -
|
| - descriptors_.set(instanceIdString,
|
| - BluetoothRemoteGattDescriptorAndroid::Create(
|
| - instanceIdString, bluetooth_gatt_descriptor_wrapper,
|
| - chrome_bluetooth_device));
|
| + descriptors_.insert(std::make_pair(instanceIdString, std::move(descriptor)));
|
| }
|
|
|
| void BluetoothRemoteGattCharacteristicAndroid::SubscribeToNotifications(
|
|
|