diff options
author | Zakor Gyula <zakorgy@inf.u-szeged.hu> | 2016-11-24 15:35:08 +0100 |
---|---|---|
committer | Attila Dusnoki <dati91@gmail.com> | 2016-11-29 18:24:28 +0100 |
commit | 8dd100f74fdabd55d5f3c179b3d5e52d2e0aa0e5 (patch) | |
tree | 81fa19118016fbb77ebf347ad63e5fce5036d5d8 /components/script/dom/bluetoothdevice.rs | |
parent | 89c4219a3641a2bbf282ef38c66498e0df79adf9 (diff) | |
download | servo-8dd100f74fdabd55d5f3c179b3d5e52d2e0aa0e5.tar.gz servo-8dd100f74fdabd55d5f3c179b3d5e52d2e0aa0e5.zip |
Step annotations for WebBluetooth functions
Diffstat (limited to 'components/script/dom/bluetoothdevice.rs')
-rw-r--r-- | components/script/dom/bluetoothdevice.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/bluetoothdevice.rs b/components/script/dom/bluetoothdevice.rs index 4f66218dfb4..4af6b2a4f59 100644 --- a/components/script/dom/bluetoothdevice.rs +++ b/components/script/dom/bluetoothdevice.rs @@ -78,6 +78,7 @@ impl BluetoothDeviceMethods for BluetoothDevice { // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-gatt fn Gatt(&self) -> Root<BluetoothRemoteGATTServer> { + // TODO: Step 1 - 2: Implement the Permission API. self.gatt.or_init(|| { BluetoothRemoteGATTServer::new(&self.global(), self) }) |