Chromium Code Reviews| Index: Source/bindings/tests/idls/TestObject.idl |
| diff --git a/Source/bindings/tests/idls/TestObject.idl b/Source/bindings/tests/idls/TestObject.idl |
| index a694ca5302a7e109bad77b6b4e81607a8b388ad7..7e7579ae1020c53bbc81327dcbc87092ce52c52a 100644 |
| --- a/Source/bindings/tests/idls/TestObject.idl |
| +++ b/Source/bindings/tests/idls/TestObject.idl |
| @@ -380,12 +380,13 @@ interface TestObject { |
| void voidMethodOptionalDictionaryArg(optional Dictionary optionalDictionaryArg); |
| // Optional arguments with defaults |
| + void voidMethodDefaultByteStringArg(optional ByteString defaultByteStringArg = "foo"); |
| void voidMethodDefaultStringArg(optional DOMString defaultStringArg = "foo"); |
| - void voidMethodDefaultNullStringArg(optional DOMString defaultStringArg = null); |
| void voidMethodDefaultLongArg(optional long defaultLongArg = 10); |
| void voidMethodDefaultDoubleArg(optional double defaultDoubleArg = 0.5); |
| void voidMethodDefaultTrueBooleanArg(optional boolean defaultBooleanArg = true); |
| void voidMethodDefaultFalseBooleanArg(optional boolean defaultBooleanArg = false); |
| + void voidMethodDefaultNullableByteStringArg(optional ByteString? defaultStringArg = null); |
|
Nils Barth (inactive)
2014/06/17 03:40:32
default*Byte*StringArg
|
| void voidMethodDefaultNullableStringArg(optional DOMString? defaultStringArg = null); |
| void voidMethodDefaultNullableTestInterfaceArg(optional TestInterface? defaultTestInterfaceArg = null); |