Update WebBluetooth webidl files

This commit is contained in:
Zakor Gyula 2017-02-01 14:12:13 +01:00 committed by Attila Dusnoki
parent da89099e26
commit 706cffbca8
10 changed files with 48 additions and 45 deletions

View file

@ -6,13 +6,13 @@
[Pref="dom.bluetooth.enabled"]
interface BluetoothDevice : EventTarget {
readonly attribute DOMString id;
readonly attribute DOMString? name;
readonly attribute BluetoothRemoteGATTServer gatt;
readonly attribute DOMString id;
readonly attribute DOMString? name;
readonly attribute BluetoothRemoteGATTServer gatt;
Promise<void> watchAdvertisements();
void unwatchAdvertisements();
readonly attribute boolean watchingAdvertisements;
Promise<void> watchAdvertisements();
void unwatchAdvertisements();
readonly attribute boolean watchingAdvertisements;
};
[NoInterfaceObject]