| Index: third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
|
| diff --git a/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h b/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
|
| index e4d2cdced9b235a0f904c28cb55b4a8a454c7c4b..62c6758b759a7c073df697b8bb89ca5a15624b9d 100644
|
| --- a/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
|
| +++ b/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
|
| @@ -15,10 +15,10 @@ namespace blink {
|
| class ExceptionState;
|
| class HTMLDivElement;
|
| class ScriptState;
|
| -class V8TestCallback;
|
| -class V8TestInterfaceCallback;
|
| -class V8TestReceiverObjectCallback;
|
| -class V8TestSequenceCallback;
|
| +class TestCallback;
|
| +class TestInterfaceCallback;
|
| +class TestReceiverObjectCallback;
|
| +class TestSequenceCallback;
|
|
|
| class CallbackFunctionTest final : public GarbageCollected<CallbackFunctionTest>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -27,10 +27,10 @@ public:
|
|
|
| static CallbackFunctionTest* create() { return new CallbackFunctionTest(); }
|
|
|
| - String testCallback(ScriptState*, V8TestCallback*, const String&, const String&, ExceptionState&);
|
| - void testInterfaceCallback(ScriptState*, V8TestInterfaceCallback*, HTMLDivElement*, ExceptionState&);
|
| - void testReceiverObjectCallback(ScriptState*, V8TestReceiverObjectCallback*, ExceptionState&);
|
| - Vector<String> testSequenceCallback(ScriptState*, V8TestSequenceCallback*, const Vector<int>& numbers, ExceptionState&);
|
| + String testCallback(ScriptState*, TestCallback*, const String&, const String&, ExceptionState&);
|
| + void testInterfaceCallback(ScriptState*, TestInterfaceCallback*, HTMLDivElement*, ExceptionState&);
|
| + void testReceiverObjectCallback(ScriptState*, TestReceiverObjectCallback*, ExceptionState&);
|
| + Vector<String> testSequenceCallback(ScriptState*, TestSequenceCallback*, const Vector<int>& numbers, ExceptionState&);
|
| };
|
|
|
| } // namespace blink
|
|
|