diff options
author | zakorgy <zakorgy@inf.u-szeged.hu> | 2016-04-22 12:49:38 +0200 |
---|---|---|
committer | Attila Dusnoki <dati91@gmail.com> | 2016-05-03 11:35:30 +0200 |
commit | 402bc552cae3840993e10def211c16440e5bc005 (patch) | |
tree | b0ffa93c4a955f583810df2f9e6d4f6a269db11c /components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl | |
parent | 76d6685d7f982bef2642a6356ecab358178d4184 (diff) | |
download | servo-402bc552cae3840993e10def211c16440e5bc005.tar.gz servo-402bc552cae3840993e10def211c16440e5bc005.zip |
Replace the union types with the correct typedefs in the webidl files and the API classes.
Diffstat (limited to 'components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl')
-rw-r--r-- | components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl b/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl index 294e00e1b85..2f721203ee1 100644 --- a/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl +++ b/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl @@ -11,9 +11,9 @@ interface BluetoothRemoteGATTCharacteristic { readonly attribute BluetoothCharacteristicProperties properties; readonly attribute ByteString? value; [Throws] - BluetoothRemoteGATTDescriptor getDescriptor((DOMString or unsigned long) descriptor); + BluetoothRemoteGATTDescriptor getDescriptor(BluetoothDescriptorUUID descriptor); [Throws] - sequence<BluetoothRemoteGATTDescriptor> getDescriptors(optional (DOMString or unsigned long) descriptor); + sequence<BluetoothRemoteGATTDescriptor> getDescriptors(optional BluetoothDescriptorUUID descriptor); //Promise<BluetoothRemoteGATTDescriptor> getDescriptor(BluetoothDescriptorUUID descriptor); //Promise<sequence<BluetoothRemoteGATTDescriptor>> //getDescriptors(optional BluetoothDescriptorUUID descriptor); |