diff options
author | Josh Matthews <josh@joshmatthews.net> | 2023-02-16 23:22:01 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2023-05-20 11:05:09 -0400 |
commit | fca5833e216318c45caabe147ee724cff2daae1c (patch) | |
tree | a2e5bea45e492426b53e4a8484a4ab2b2cee2737 /components/script/dom/bluetoothremotegattcharacteristic.rs | |
parent | f79e1e327dfdf047cab9652e1cc3e67a7667faa1 (diff) | |
download | servo-fca5833e216318c45caabe147ee724cff2daae1c.tar.gz servo-fca5833e216318c45caabe147ee724cff2daae1c.zip |
Remove global argument from Promise::new_in_current_realm.
Diffstat (limited to 'components/script/dom/bluetoothremotegattcharacteristic.rs')
-rw-r--r-- | components/script/dom/bluetoothremotegattcharacteristic.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/bluetoothremotegattcharacteristic.rs b/components/script/dom/bluetoothremotegattcharacteristic.rs index fd01653c84d..a3c4b826bd7 100644 --- a/components/script/dom/bluetoothremotegattcharacteristic.rs +++ b/components/script/dom/bluetoothremotegattcharacteristic.rs @@ -137,7 +137,7 @@ impl BluetoothRemoteGATTCharacteristicMethods for BluetoothRemoteGATTCharacteris // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattcharacteristic-readvalue fn ReadValue(&self, comp: InRealm) -> Rc<Promise> { - let p = Promise::new_in_current_realm(&self.global(), comp); + let p = Promise::new_in_current_realm(comp); // Step 1. if uuid_is_blocklisted(self.uuid.as_ref(), Blocklist::Reads) { @@ -170,7 +170,7 @@ impl BluetoothRemoteGATTCharacteristicMethods for BluetoothRemoteGATTCharacteris // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattcharacteristic-writevalue fn WriteValue(&self, value: ArrayBufferViewOrArrayBuffer, comp: InRealm) -> Rc<Promise> { - let p = Promise::new_in_current_realm(&self.global(), comp); + let p = Promise::new_in_current_realm(comp); // Step 1. if uuid_is_blocklisted(self.uuid.as_ref(), Blocklist::Writes) { @@ -221,7 +221,7 @@ impl BluetoothRemoteGATTCharacteristicMethods for BluetoothRemoteGATTCharacteris // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattcharacteristic-startnotifications fn StartNotifications(&self, comp: InRealm) -> Rc<Promise> { - let p = Promise::new_in_current_realm(&self.global(), comp); + let p = Promise::new_in_current_realm(comp); // Step 1. if uuid_is_blocklisted(self.uuid.as_ref(), Blocklist::Reads) { @@ -258,7 +258,7 @@ impl BluetoothRemoteGATTCharacteristicMethods for BluetoothRemoteGATTCharacteris // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattcharacteristic-stopnotifications fn StopNotifications(&self, comp: InRealm) -> Rc<Promise> { - let p = Promise::new_in_current_realm(&self.global(), comp); + let p = Promise::new_in_current_realm(comp); let sender = response_async(&p, self); // TODO: Step 3 - 4: Implement `active notification context set` for BluetoothRemoteGATTCharacteristic, |