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