Index: Source/bindings/tests/idls/TestCallback.idl |
diff --git a/Source/bindings/tests/idls/TestCallback.idl b/Source/bindings/tests/idls/TestCallback.idl |
index ea6a5eb4012ac3a3e45db2287a9e38ebe40f83e5..d6b1207ba15b9ba075ab809d6c0c6b083bc06fa3 100644 |
--- a/Source/bindings/tests/idls/TestCallback.idl |
+++ b/Source/bindings/tests/idls/TestCallback.idl |
@@ -30,10 +30,10 @@ |
// interface for tracking changes in its ouput. |
callback interface TestCallback { |
boolean callbackWithNoParam(); |
- boolean callbackWithClass1Param(Class1 class1Param); |
- boolean callbackWithClass2Param(Class2 class2Param, DOMString strArg); |
- long callbackWithNonBoolReturnType(Class3 class3Param); |
- [Custom] long customCallback(Class5 class5Param, Class6 class6Param); |
+ boolean callbackWithTestObjParam(TestObj class1Param); |
+ boolean callbackWithTestObjParam(TestObj class2Param, DOMString strArg); |
+ long callbackWithNonBoolReturnType(TestObj class3Param); |
+ [Custom] long customCallback(TestObj testObjParam, TestObj testObjParam); |
boolean callbackWithStringList(DOMStringList listParam); |
boolean callbackWithBoolean(boolean boolParam); |
}; |