| Index: third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp
|
| index 13fb787decc2ae64e7a1d222f06c23424abc99bc..0febaa0ac44574b189ddd8a928133b49ea4641b1 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp
|
| @@ -19,7 +19,7 @@ namespace blink {
|
|
|
| VoidCallbackFunctionTypedef::VoidCallbackFunctionTypedef(ScriptState* scriptState, v8::Local<v8::Function> callback)
|
| : m_scriptState(scriptState),
|
| - m_callback(scriptState->isolate(), callback) {
|
| + m_callback(scriptState->isolate(), this, callback) {
|
| DCHECK(!m_callback.isEmpty());
|
| m_callback.setPhantom();
|
| }
|
| @@ -27,7 +27,7 @@ VoidCallbackFunctionTypedef::VoidCallbackFunctionTypedef(ScriptState* scriptStat
|
| DEFINE_TRACE(VoidCallbackFunctionTypedef) {}
|
|
|
| DEFINE_TRACE_WRAPPERS(VoidCallbackFunctionTypedef) {
|
| - visitor->traceWrappers(&m_callback.cast<v8::Object>());
|
| + visitor->traceWrappers(m_callback.cast<v8::Value>());
|
| }
|
|
|
| bool VoidCallbackFunctionTypedef::call(ScriptWrappable* scriptWrappable, const String& arg) {
|
|
|