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

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

Issue 137773002: Cleanup IDL test files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix SVG Created 6 years, 11 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
« no previous file with comments | « Source/bindings/tests/idls/TestSVG.idl ('k') | Source/bindings/tests/results/V8TestObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestTypedefs.idl
diff --git a/Source/bindings/tests/idls/TestTypedefs.idl b/Source/bindings/tests/idls/TestTypedefs.idl
index 46860393ab17d6bcf187908ef55f55f358eb7987..c5b24851cd71f81a8791946ca0d709bc415e93c4 100644
--- a/Source/bindings/tests/idls/TestTypedefs.idl
+++ b/Source/bindings/tests/idls/TestTypedefs.idl
@@ -31,8 +31,19 @@
// This IDL file is for testing the bindings code generator and for tracking
// changes in its ouput.
+typedef float DOUBLE;
+typedef unsigned long long ULONGLONG;
+typedef SerializedScriptValue SCRIPT_VALUE;
+typedef long[] ARRAY_OF_LONGS;
+typedef DOMString STRING;
+typedef DOMString[] ARRAY_OF_STRINGS;
+typedef TestCallbackInterface TEST_CALLBACK_INTERFACE;
+typedef TestSubObjConstructor T;
+typedef Array ARRAY;
+typedef DOMException E;
+
[
- Constructor(STRING hello, TEST_CALLBACK_INTERFACE testCallbackInterface)
+ Constructor(STRING hello),
] interface TestTypedefs {
attribute ULONGLONG unsignedLongLongAttr;
@@ -43,13 +54,10 @@
[StrictTypeChecking] void func(optional ARRAY_OF_LONGS x);
void setShadow(DOUBLE width, DOUBLE height, float blur, [StrictTypeChecking] optional STRING color, optional DOUBLE alpha);
+ void voidMethodTestCallbackInterfaceArgument(TEST_CALLBACK_INTERFACE testCallbackInterface);
ULONGLONG methodWithSequenceArg(sequence<SCRIPT_VALUE> sequenceArg);
- void nullableArrayArg(ARRAY_OF_STRINGS? arrayArg);
-
- [Immutable] SVGPOINT immutablePointFunction();
-
[RaisesException] ARRAY_OF_STRINGS stringArrayFunction(ARRAY_OF_STRINGS values);
[RaisesException] STRING[] stringArrayFunction2(STRING[] values);
@@ -60,15 +68,3 @@
[RaisesException=Getter] attribute DOMString stringAttrWithGetterException;
[RaisesException=Setter] attribute DOMString stringAttrWithSetterException;
};
-
-typedef float DOUBLE;
-typedef unsigned long long ULONGLONG;
-typedef SerializedScriptValue SCRIPT_VALUE;
-typedef long[] ARRAY_OF_LONGS;
-typedef SVGPoint SVGPOINT;
-typedef DOMString STRING;
-typedef DOMString[] ARRAY_OF_STRINGS;
-typedef TestCallbackInterface TEST_CALLBACK_INTERFACE;
-typedef TestSubObjConstructor T;
-typedef Array ARRAY;
-typedef DOMException E;
« no previous file with comments | « Source/bindings/tests/idls/TestSVG.idl ('k') | Source/bindings/tests/results/V8TestObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698