| Index: Source/bindings/tests/results/V8TestCallback.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestCallback.cpp b/Source/bindings/tests/results/V8TestCallback.cpp
|
| index 79cac68d6a9bbe97b815cf1166f4d6fa3dcbd2e0..286208dc69c28a6a99151845260268862f3100a1 100644
|
| --- a/Source/bindings/tests/results/V8TestCallback.cpp
|
| +++ b/Source/bindings/tests/results/V8TestCallback.cpp
|
| @@ -21,9 +21,8 @@
|
| #include "config.h"
|
| #include "V8TestCallback.h"
|
|
|
| -#include "V8Class1.h"
|
| -#include "V8Class2.h"
|
| #include "V8DOMStringList.h"
|
| +#include "V8TestObj.h"
|
| #include "bindings/v8/V8Binding.h"
|
| #include "bindings/v8/V8Callback.h"
|
| #include "core/dom/ScriptExecutionContext.h"
|
| @@ -66,7 +65,7 @@ bool V8TestCallback::callbackWithNoParam()
|
| return !invokeCallback(m_callback.get(), 0, argv, callbackReturnValue, scriptExecutionContext());
|
| }
|
|
|
| -bool V8TestCallback::callbackWithClass1Param(Class1* class1Param)
|
| +bool V8TestCallback::callbackWithTestObjParam(TestObj* class1Param)
|
| {
|
| if (!canInvokeCallback())
|
| return true;
|
| @@ -94,7 +93,7 @@ bool V8TestCallback::callbackWithClass1Param(Class1* class1Param)
|
| return !invokeCallback(m_callback.get(), 1, argv, callbackReturnValue, scriptExecutionContext());
|
| }
|
|
|
| -bool V8TestCallback::callbackWithClass2Param(Class2* class2Param, const String& strArg)
|
| +bool V8TestCallback::callbackWithTestObjParam(TestObj* class2Param, const String& strArg)
|
| {
|
| if (!canInvokeCallback())
|
| return true;
|
|
|