| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h b/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| index 2442cc8a8474cb7c091895150705f42cf2b203cc..f013f9274d877fffa7a8a7887988602cbd03ebec 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
|
| @@ -16,7 +16,7 @@
|
| namespace blink {
|
|
|
| class V8TestCallbackInterface final : public TestCallbackInterface, public ActiveDOMCallback {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(V8TestCallbackInterface);
|
| + USING_GARBAGE_COLLECTED_MIXIN(V8TestCallbackInterface);
|
| public:
|
| static V8TestCallbackInterface* create(v8::Local<v8::Function> callback, ScriptState* scriptState)
|
| {
|
| @@ -36,8 +36,8 @@ public:
|
| 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;
|
| + void voidMethodWillBeGarbageCollectedSequenceArg(const HeapVector<Member<TestInterfaceWillBeGarbageCollected>>& sequenceArg) override;
|
| + void voidMethodWillBeGarbageCollectedArrayArg(const HeapVector<Member<TestInterfaceWillBeGarbageCollected>>& arrayArg) override;
|
| private:
|
| CORE_EXPORT V8TestCallbackInterface(v8::Local<v8::Function>, ScriptState*);
|
|
|
|
|