| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.idl
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.idl b/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.idl
|
| index b9edeec88fc9c4bcea02bdc5311dd15eb828cb61..b9a5379268927fda47edfb81caf2ec4815951569 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.idl
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.idl
|
| @@ -14,12 +14,12 @@
|
| // TODO(ortuno): Add test to make sure service matches the service
|
| // used to call getCharacteristic.
|
| // readonly attribute BluetoothGATTService service;
|
| - readonly attribute UUID uuid;
|
| + readonly attribute UUID uuid;
|
| readonly attribute BluetoothCharacteristicProperties properties;
|
| - readonly attribute ArrayBuffer? value;
|
| + readonly attribute DataView? value;
|
| // Promise<BluetoothGATTDescriptor> getDescriptor(BluetoothDescriptorUUID descriptor);
|
| // Promise<sequence<BluetoothGATTDescriptor>> getDescriptors(optional BluetoothDescriptorUUID descriptor);
|
| - [CallWith=ScriptState] Promise<ArrayBuffer> readValue();
|
| + [CallWith=ScriptState] Promise<DataView> readValue();
|
| [CallWith=ScriptState] Promise<void> writeValue(BufferSource value);
|
| [CallWith=ScriptState] Promise<void> startNotifications();
|
| [CallWith=ScriptState] Promise<void> stopNotifications();
|
|
|