aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl
diff options
context:
space:
mode:
authorzakorgy <zakorgy@inf.u-szeged.hu>2016-04-22 12:49:38 +0200
committerAttila Dusnoki <dati91@gmail.com>2016-05-03 11:35:30 +0200
commit402bc552cae3840993e10def211c16440e5bc005 (patch)
treeb0ffa93c4a955f583810df2f9e6d4f6a269db11c /components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl
parent76d6685d7f982bef2642a6356ecab358178d4184 (diff)
downloadservo-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.webidl4
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);