| Index: third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom
|
| diff --git a/third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom b/third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom
|
| index ed1adc8709d2866a8ee6d0fe22657aa2d9993d2a..43ac52f4eb03240f67985e71cd4592ad660db64d 100644
|
| --- a/third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom
|
| +++ b/third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom
|
| @@ -250,6 +250,14 @@ interface WebBluetoothService {
|
| string descriptor_instance_id) => (
|
| WebBluetoothResult result,
|
| array<uint8>? value);
|
| +
|
| + // Writes a value to the descriptor identified by
|
| + // |descriptor_instance_id|. The callback is run with
|
| + // WebBluetoothResult::SUCCESS if the value was successfully
|
| + // written.
|
| + RemoteDescriptorWriteValue(
|
| + string descriptor_instance_id,
|
| + array<uint8> value) => (WebBluetoothResult result);
|
| };
|
|
|
| // Classes should implement this interface and pass an associated pointer
|
|
|