| 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 06ed41997d8c3d509b74812bd546f7192096ff52..a7bbeee2b5fd6e0b1b3806f6ecc511aadc9b44f6 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| @@ -174,33 +174,6 @@ void BluetoothRemoteGattServiceMac::SendNotificationIfComplete() {
|
| }
|
| }
|
|
|
| -void BluetoothRemoteGattServiceMac::DidUpdateValue(
|
| - CBCharacteristic* characteristic,
|
| - NSError* error) {
|
| - BluetoothRemoteGattCharacteristicMac* gatt_characteristic =
|
| - GetBluetoothRemoteGattCharacteristicMac(characteristic);
|
| - DCHECK(gatt_characteristic);
|
| - gatt_characteristic->DidUpdateValue(error);
|
| -}
|
| -
|
| -void BluetoothRemoteGattServiceMac::DidWriteValue(
|
| - CBCharacteristic* characteristic,
|
| - NSError* error) {
|
| - BluetoothRemoteGattCharacteristicMac* gatt_characteristic =
|
| - GetBluetoothRemoteGattCharacteristicMac(characteristic);
|
| - DCHECK(gatt_characteristic);
|
| - gatt_characteristic->DidWriteValue(error);
|
| -}
|
| -
|
| -void BluetoothRemoteGattServiceMac::DidUpdateNotificationState(
|
| - CBCharacteristic* characteristic,
|
| - NSError* error) {
|
| - BluetoothRemoteGattCharacteristicMac* gatt_characteristic =
|
| - GetBluetoothRemoteGattCharacteristicMac(characteristic);
|
| - DCHECK(gatt_characteristic);
|
| - gatt_characteristic->DidUpdateNotificationState(error);
|
| -}
|
| -
|
| bool BluetoothRemoteGattServiceMac::IsDiscoveryComplete() const {
|
| return is_discovery_complete_;
|
| }
|
|
|