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

Unified Diff: third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl

Issue 2350813005: bindings: Support sequence in callback function arguments (Closed)
Patch Set: rebase Created 4 years, 3 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: third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl
diff --git a/third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl b/third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl
index 291f34d37a96f2c4d81d8b06983804ef1dbbe156..318dc8262d7f44ea95eea15d83352b8172dfb8f1 100644
--- a/third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl
+++ b/third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl
@@ -35,6 +35,8 @@ callback AnyCallbackFunctionOptionalAnyArg = any (optional any optionalAnyArg);
[ExperimentalCallbackFunction] callback VoidExperimentalCallbackFunction = void ();
[ExperimentalCallbackFunction] callback LongExperimentalCallbackFunction = long (long num1, long num2);
[ExperimentalCallbackFunction] callback VoidCallbackFunctionInterfaceArg = void (HTMLDivElement divElement);
+[ExperimentalCallbackFunction] callback StringSequenceCallbackFunctionLongSequenceArg = sequence<DOMString> (sequence<long> arg);
+
// No extended attributes on the interface; those go in TestInterface.idl
interface TestObject {
// Constants

Powered by Google App Engine
This is Rietveld 408576698