aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/BluetoothDevice.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls/BluetoothDevice.webidl')
-rw-r--r--components/script/dom/webidls/BluetoothDevice.webidl6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/script/dom/webidls/BluetoothDevice.webidl b/components/script/dom/webidls/BluetoothDevice.webidl
index 65bfb9c1a4e..34a77230850 100644
--- a/components/script/dom/webidls/BluetoothDevice.webidl
+++ b/components/script/dom/webidls/BluetoothDevice.webidl
@@ -8,9 +8,13 @@
interface BluetoothDevice {
readonly attribute DOMString id;
readonly attribute DOMString? name;
+ // TODO: remove this after BluetoothAdvertisingEvent implemented.
readonly attribute BluetoothAdvertisingData adData;
readonly attribute BluetoothRemoteGATTServer gatt;
- // readonly attribute FrozenArray[] uuids;
+
+ // Promise<void> watchAdvertisements();
+ // void unwatchAdvertisements();
+ // readonly attribute boolean watchingAdvertisements;
};
// BluetoothDevice implements EventTarget;