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 9023e06b5b80716aeee46003463cbcb77a6c65a1..eb08dff330ca00c82253877e3599d6167babdc8b 100644 |
| --- a/Source/bindings/tests/idls/TestObject.idl |
| +++ b/Source/bindings/tests/idls/TestObject.idl |
| @@ -87,6 +87,7 @@ interface TestObject { |
| // Basic types |
| attribute Date dateAttribute; |
| attribute DOMString stringAttribute; |
| + attribute ByteString byteStringAttribute; |
| attribute DOMTimeStamp domTimeStampAttribute; |
| attribute boolean booleanAttribute; |
| attribute byte byteAttribute; |
| @@ -276,6 +277,7 @@ interface TestObject { |
| void voidMethodDateArg(Date dateArg); |
| void voidMethodStringArg(DOMString stringArg); |
| + void voidMethodByteStringArg(ByteString stringArg); |
|
Nils Barth (inactive)
2014/06/02 03:20:16
Could you also add a method *returning* a ByteStri
jsbell
2014/06/03 23:22:36
Done.
|
| void voidMethodDOMTimeStampArg(DOMTimeStamp domTimeStampArg); |
| void voidMethodBooleanArg(boolean booleanArg); |
| void voidMethodByteArg(byte byteArg); |