| Index: device/bluetooth/bluetooth_low_energy_device_mac.mm
|
| diff --git a/device/bluetooth/bluetooth_low_energy_device_mac.mm b/device/bluetooth/bluetooth_low_energy_device_mac.mm
|
| index 04c400a781bc86a8df6c9076b44e533b36c1cd95..2ddc592642cf448115309cd848f74bf2316ed580 100644
|
| --- a/device/bluetooth/bluetooth_low_energy_device_mac.mm
|
| +++ b/device/bluetooth/bluetooth_low_energy_device_mac.mm
|
| @@ -312,6 +312,16 @@ void BluetoothLowEnergyDeviceMac::DidModifyServices(
|
| [GetPeripheral() discoverServices:nil];
|
| }
|
|
|
| +void BluetoothLowEnergyDeviceMac::DidReadValue(CBCharacteristic* characteristic,
|
| + NSError* error) {
|
| + BluetoothRemoteGattServiceMac* gatt_service =
|
| + GetBluetoothRemoteGattService(characteristic.service);
|
| + if (!gatt_service) {
|
| + return;
|
| + }
|
| + gatt_service->DidReadValue(characteristic, error);
|
| +}
|
| +
|
| // static
|
| std::string BluetoothLowEnergyDeviceMac::GetPeripheralIdentifier(
|
| CBPeripheral* peripheral) {
|
|
|