Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Unified Diff: Source/bindings/tests/idls/TestObject.idl

Issue 309553002: Add ByteString support to IDL bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698