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

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

Issue 2771893002: Move Bluetooth.Web.FunctionCall.Count UMA from browser to WebKit (Closed)
Patch Set: address more comment Created 3 years, 8 months 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://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattcharacteri stic 5 // https://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattcharacteri stic
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 RuntimeEnabled=WebBluetooth, 11 RuntimeEnabled=WebBluetooth,
12 ] interface BluetoothRemoteGATTCharacteristic : EventTarget {//: CharacteristicE ventHandlers { 12 ] interface BluetoothRemoteGATTCharacteristic : EventTarget {//: CharacteristicE ventHandlers {
13 [SameObject] readonly attribute BluetoothRemoteGATTService service; 13 [SameObject] 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 [RaisesException, CallWith=ScriptState] Promise<BluetoothRemoteGATTDescripto r> getDescriptor(BluetoothDescriptorUUID descriptor); 17 [RaisesException, CallWith=ScriptState, MeasureAs=WebBluetoothRemoteCharacte risticGetDescriptor] Promise<BluetoothRemoteGATTDescriptor> getDescriptor(Blueto othDescriptorUUID descriptor);
18 [RaisesException, CallWith=ScriptState] Promise<sequence<BluetoothRemoteGATT Descriptor>> getDescriptors(optional BluetoothDescriptorUUID descriptor); 18 [RaisesException, CallWith=ScriptState, MeasureAs=WebBluetoothRemoteCharacte risticGetDescriptors] Promise<sequence<BluetoothRemoteGATTDescriptor>> getDescri ptors(optional BluetoothDescriptorUUID descriptor);
19 [CallWith=ScriptState] Promise<DataView> readValue(); 19 [CallWith=ScriptState, MeasureAs=WebBluetoothRemoteCharacteristicReadValue] Promise<DataView> readValue();
20 [CallWith=ScriptState] Promise<void> writeValue(BufferSource value); 20 [CallWith=ScriptState, MeasureAs=WebBluetoothRemoteCharacteristicWriteValue] Promise<void> writeValue(BufferSource value);
21 [CallWith=ScriptState] Promise<BluetoothRemoteGATTCharacteristic> startNotif ications(); 21 [CallWith=ScriptState, MeasureAs=WebBluetoothRemoteCharacteristicStartNotifi cations] Promise<BluetoothRemoteGATTCharacteristic> startNotifications();
22 [CallWith=ScriptState] Promise<BluetoothRemoteGATTCharacteristic> stopNotifi cations(); 22 [CallWith=ScriptState, MeasureAs=WebBluetoothRemoteCharacteristicStopNotific ations] Promise<BluetoothRemoteGATTCharacteristic> stopNotifications();
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