| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // https://webbluetoothchrome.github.io/web-bluetooth/#idl-def-bluetoothgattchar
acteristic | 5 // https://webbluetoothchrome.github.io/web-bluetooth/#idl-def-bluetoothgattchar
acteristic |
| 6 | 6 |
| 7 // Implement BluetoothRemoteGATTCharacteristic interface: https://crbug.com/4833
44 | 7 // Implement BluetoothRemoteGATTCharacteristic interface: https://crbug.com/4833
44 |
| 8 | 8 |
| 9 [ | 9 [ |
| 10 DependentLifetime, | 10 DependentLifetime, |
| 11 OriginTrialEnabled=WebBluetooth, | 11 OriginTrialEnabled=WebBluetooth, |
| 12 ] interface BluetoothRemoteGATTCharacteristic : EventTarget {//: CharacteristicE
ventHandlers { | 12 ] interface BluetoothRemoteGATTCharacteristic : EventTarget {//: CharacteristicE
ventHandlers { |
| 13 readonly attribute BluetoothRemoteGATTService service; | 13 readonly attribute BluetoothRemoteGATTService service; |
| 14 readonly attribute UUID uuid; | 14 readonly attribute UUID uuid; |
| 15 readonly attribute BluetoothCharacteristicProperties properties; | 15 readonly attribute BluetoothCharacteristicProperties properties; |
| 16 readonly attribute DataView? value; | 16 readonly attribute DataView? value; |
| 17 // Promise<BluetoothRemoteGATTDescriptor> getDescriptor(BluetoothD
escriptorUUID descriptor); | 17 // Promise<BluetoothRemoteGATTDescriptor> getDescriptor(BluetoothD
escriptorUUID descriptor); |
| 18 // Promise<sequence<BluetoothRemoteGATTDescriptor>> getDescriptors(optional
BluetoothDescriptorUUID descriptor); | 18 // Promise<sequence<BluetoothRemoteGATTDescriptor>> getDescriptors(optional
BluetoothDescriptorUUID descriptor); |
| 19 [CallWith=ScriptState] Promise<DataView> readValue(); | 19 [CallWith=ScriptState] Promise<DataView> readValue(
); |
| 20 [CallWith=ScriptState] Promise<void> writeValue(BufferSource value); | 20 [CallWith=ScriptState] Promise<void> writeValue
(BufferSource value); |
| 21 [CallWith=ScriptState] Promise<void> startNotifications(); | 21 [CallWith=ScriptState] Promise<BluetoothRemoteGATTCharacteristic> startNotif
ications(); |
| 22 [CallWith=ScriptState] Promise<void> stopNotifications(); | 22 [CallWith=ScriptState] Promise<BluetoothRemoteGATTCharacteristic> stopNotifi
cations(); |
| 23 | 23 |
| 24 // TODO(ortuno): Move this to CharacteristicEventHandlers. | 24 // TODO(ortuno): Move this to CharacteristicEventHandlers. |
| 25 // http://crbug.com/537459 | 25 // http://crbug.com/537459 |
| 26 attribute EventHandler oncharacteristicvaluechanged; | 26 attribute EventHandler oncharacteristicvaluechanged; |
| 27 }; | 27 }; |
| OLD | NEW |