| 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 f2b17d755817bba373126509a1639043655c2d41..85fec39b33947a06d1021c1441bc476db82f11e2 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| @@ -119,6 +119,17 @@ void BluetoothRemoteGattServiceMac::DidDiscoverCharacteristics() {
|
| GetMacAdapter()->NotifyGattServiceChanged(this);
|
| }
|
|
|
| +void BluetoothRemoteGattServiceMac::DidReadValue(
|
| + CBCharacteristic* characteristic,
|
| + NSError* error) {
|
| + BluetoothRemoteGattCharacteristicMac* gatt_characteristic =
|
| + GetBluetoothRemoteGattCharacteristicMac(characteristic);
|
| + if (!gatt_characteristic) {
|
| + return;
|
| + }
|
| + gatt_characteristic->DidReadValue(error);
|
| +}
|
| +
|
| bool BluetoothRemoteGattServiceMac::IsDiscoveryComplete() {
|
| return is_discovery_complete_;
|
| }
|
|
|