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