| Index: Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| diff --git a/Source/bindings/tests/results/core/V8TestCallbackInterface.h b/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| index 3955f07de1edda9ef095a635bf410c23bcde0ab7..2442cc8a8474cb7c091895150705f42cf2b203cc 100644
|
| --- a/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| +++ b/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| @@ -23,21 +23,21 @@ public:
|
| return new V8TestCallbackInterface(callback, scriptState);
|
| }
|
|
|
| - virtual ~V8TestCallbackInterface();
|
| + ~V8TestCallbackInterface() override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| - virtual void voidMethod() override;
|
| - virtual bool booleanMethod() override;
|
| - virtual void voidMethodBooleanArg(bool boolArg) override;
|
| - virtual void voidMethodSequenceArg(const Vector<RefPtr<TestInterfaceEmpty>>& sequenceArg) override;
|
| - virtual void voidMethodFloatArg(float floatArg) override;
|
| - virtual void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) override;
|
| - virtual void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg) override;
|
| - virtual void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringArg) override;
|
| - virtual void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) override;
|
| - virtual void voidMethodWillBeGarbageCollectedSequenceArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected>>& sequenceArg) override;
|
| - virtual void voidMethodWillBeGarbageCollectedArrayArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected>>& arrayArg) override;
|
| + void voidMethod() override;
|
| + bool booleanMethod() override;
|
| + void voidMethodBooleanArg(bool boolArg) override;
|
| + void voidMethodSequenceArg(const Vector<RefPtr<TestInterfaceEmpty>>& sequenceArg) override;
|
| + void voidMethodFloatArg(float floatArg) override;
|
| + void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) override;
|
| + void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg) override;
|
| + void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringArg) override;
|
| + void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) override;
|
| + void voidMethodWillBeGarbageCollectedSequenceArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected>>& sequenceArg) override;
|
| + void voidMethodWillBeGarbageCollectedArrayArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected>>& arrayArg) override;
|
| private:
|
| CORE_EXPORT V8TestCallbackInterface(v8::Local<v8::Function>, ScriptState*);
|
|
|
|
|