| Index: device/bluetooth/bluetooth_remote_gatt_descriptor_win.cc
|
| diff --git a/device/bluetooth/bluetooth_remote_gatt_descriptor_win.cc b/device/bluetooth/bluetooth_remote_gatt_descriptor_win.cc
|
| index 3610af03f6125e5c202e832d15e2bd8241965e97..6039af1a7874bc7c374a02ee25265b90c1d44697 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_descriptor_win.cc
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_descriptor_win.cc
|
| @@ -62,12 +62,12 @@ std::vector<uint8_t>& BluetoothRemoteGattDescriptorWin::GetValue() const {
|
| return const_cast<std::vector<uint8_t>&>(descriptor_value_);
|
| }
|
|
|
| -BluetoothGattCharacteristic*
|
| +BluetoothRemoteGattCharacteristic*
|
| BluetoothRemoteGattDescriptorWin::GetCharacteristic() const {
|
| return parent_characteristic_;
|
| }
|
|
|
| -BluetoothGattCharacteristic::Permissions
|
| +BluetoothRemoteGattCharacteristic::Permissions
|
| BluetoothRemoteGattDescriptorWin::GetPermissions() const {
|
| NOTIMPLEMENTED();
|
| return descriptor_permissions_;
|
| @@ -79,7 +79,7 @@ void BluetoothRemoteGattDescriptorWin::ReadRemoteDescriptor(
|
| DCHECK(ui_task_runner_->RunsTasksOnCurrentThread());
|
|
|
| NOTIMPLEMENTED();
|
| - error_callback.Run(BluetoothGattService::GATT_ERROR_NOT_SUPPORTED);
|
| + error_callback.Run(BluetoothRemoteGattService::GATT_ERROR_NOT_SUPPORTED);
|
| }
|
|
|
| void BluetoothRemoteGattDescriptorWin::WriteRemoteDescriptor(
|
| @@ -89,7 +89,7 @@ void BluetoothRemoteGattDescriptorWin::WriteRemoteDescriptor(
|
| DCHECK(ui_task_runner_->RunsTasksOnCurrentThread());
|
|
|
| NOTIMPLEMENTED();
|
| - error_callback.Run(BluetoothGattService::GATT_ERROR_NOT_SUPPORTED);
|
| + error_callback.Run(BluetoothRemoteGattService::GATT_ERROR_NOT_SUPPORTED);
|
| }
|
|
|
| uint16_t BluetoothRemoteGattDescriptorWin::GetAttributeHandle() const {
|
|
|