Add methods that return floating-point types to TestBinding.webidl.

They were already implemented in testbinding.rs, but were forgotten in the IDL
file.
This commit is contained in:
Ms2ger 2014-07-27 22:35:07 +02:00
parent f392334d2e
commit 20d7bbffae

View file

@ -101,6 +101,8 @@ interface TestBinding {
unsigned long receiveUnsignedLong(); unsigned long receiveUnsignedLong();
long long receiveLongLong(); long long receiveLongLong();
unsigned long long receiveUnsignedLongLong(); unsigned long long receiveUnsignedLongLong();
float receiveFloat();
double receiveDouble();
DOMString receiveString(); DOMString receiveString();
ByteString receiveByteString(); ByteString receiveByteString();
TestEnum receiveEnum(); TestEnum receiveEnum();
@ -118,6 +120,8 @@ interface TestBinding {
unsigned long? receiveNullableUnsignedLong(); unsigned long? receiveNullableUnsignedLong();
long long? receiveNullableLongLong(); long long? receiveNullableLongLong();
unsigned long long? receiveNullableUnsignedLongLong(); unsigned long long? receiveNullableUnsignedLongLong();
float? receiveNullableFloat();
double? receiveNullableDouble();
DOMString? receiveNullableString(); DOMString? receiveNullableString();
ByteString? receiveNullableByteString(); ByteString? receiveNullableByteString();
TestEnum? receiveNullableEnum(); TestEnum? receiveNullableEnum();