Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.idl

Issue 2437943002: Ship WebBluetooth out of origin trial (Closed)
Patch Set: address more comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 RuntimeEnabled=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<BluetoothRemoteGATTCharacteristic> startNotif ications(); 21 [CallWith=ScriptState] Promise<BluetoothRemoteGATTCharacteristic> startNotif ications();
22 [CallWith=ScriptState] Promise<BluetoothRemoteGATTCharacteristic> stopNotifi cations(); 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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698