Remove BluetoothDevice members

This commit is contained in:
zakorgy 2016-05-05 12:47:52 +02:00 committed by Attila Dusnoki
parent 8bc4785bed
commit ed92f31ebc
6 changed files with 5 additions and 93 deletions

View file

@ -4,23 +4,11 @@
// https://webbluetoothcg.github.io/web-bluetooth/#bluetoothdevice
// Allocation authorities for Vendor IDs:
enum VendorIDSource {
"bluetooth",
"usb",
"unknown"
};
[Pref="dom.bluetooth.enabled"]
interface BluetoothDevice {
readonly attribute DOMString id;
readonly attribute DOMString? name;
readonly attribute BluetoothAdvertisingData adData;
readonly attribute unsigned long? deviceClass;
readonly attribute VendorIDSource? vendorIDSource;
readonly attribute unsigned long? vendorID;
readonly attribute unsigned long? productID;
readonly attribute unsigned long? productVersion;
readonly attribute BluetoothRemoteGATTServer gatt;
// readonly attribute FrozenArray[] uuids;
};