diff options
author | Zakor Gyula <zakorgy@inf.u-szeged.hu> | 2016-12-06 12:12:01 +0100 |
---|---|---|
committer | Attila Dusnoki <dati91@gmail.com> | 2016-12-14 22:06:55 +0100 |
commit | c3e771274a66745f4715e3ef5160dc310c0e29b7 (patch) | |
tree | 467d1d370672961a3fe8aa0b11515d9b43e9672f /components/script/dom/bluetoothremotegattservice.rs | |
parent | c3c086e521b73d191d5de9239a6748691b0f96a3 (diff) | |
download | servo-c3e771274a66745f4715e3ef5160dc310c0e29b7.tar.gz servo-c3e771274a66745f4715e3ef5160dc310c0e29b7.zip |
Check if represented attributes are cached
Diffstat (limited to 'components/script/dom/bluetoothremotegattservice.rs')
-rw-r--r-- | components/script/dom/bluetoothremotegattservice.rs | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/components/script/dom/bluetoothremotegattservice.rs b/components/script/dom/bluetoothremotegattservice.rs index f4aed154c7c..e9923d5d9a5 100644 --- a/components/script/dom/bluetoothremotegattservice.rs +++ b/components/script/dom/bluetoothremotegattservice.rs @@ -117,9 +117,7 @@ impl BluetoothRemoteGATTServiceMethods for BluetoothRemoteGATTService { return p; } - // TODO: Step 5: Implement representedService internal slot for BluetootRemoteGATTService. - - // Note: Steps 6 - 7 are implemented is components/bluetooth/lib.rs in get_characteristic function + // Note: Steps 5 - 7 are implemented is components/bluetooth/lib.rs in get_characteristic function // and in handle_response function. let sender = response_async(&p, self); self.get_bluetooth_thread().send( @@ -160,9 +158,7 @@ impl BluetoothRemoteGATTServiceMethods for BluetoothRemoteGATTService { return p; } - // TODO: Step 5: Implement representedService internal slot for BluetootRemoteGATTService. - - // Note: Steps 6 - 7 are implemented is components/bluetooth/lib.rs in get_characteristics function + // Note: Steps 5 - 7 are implemented is components/bluetooth/lib.rs in get_characteristics function // and in handle_response function. let sender = response_async(&p, self); self.get_bluetooth_thread().send( @@ -200,9 +196,7 @@ impl BluetoothRemoteGATTServiceMethods for BluetoothRemoteGATTService { return p; } - // TODO: Step 5: Implement representedService internal slot for BluetootRemoteGATTService. - - // Note: Steps 6 - 7 are implemented is components/bluetooth/lib.rs in get_included_service function + // Note: Steps 5 - 7 are implemented is components/bluetooth/lib.rs in get_included_service function // and in handle_response function. let sender = response_async(&p, self); self.get_bluetooth_thread().send( @@ -246,9 +240,7 @@ impl BluetoothRemoteGATTServiceMethods for BluetoothRemoteGATTService { return p; } - // TODO: Step 5: Implement representedService internal slot for BluetootRemoteGATTService. - - // Note: Steps 6 - 7 are implemented is components/bluetooth/lib.rs in get_included_services function + // Note: Steps 5 - 7 are implemented is components/bluetooth/lib.rs in get_included_services function // and in handle_response function. let sender = response_async(&p, self); self.get_bluetooth_thread().send( |