| Index: third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp b/third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
|
| index f44f571d0e43ca29ca4e4b8f1ad827fa25214e95..4e3451bb390e0e7889f2af24d08dcd7836aacdfd 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
|
| @@ -19,7 +19,7 @@ namespace blink {
|
|
|
| VoidCallbackFunctionModules::VoidCallbackFunctionModules(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 @@ VoidCallbackFunctionModules::VoidCallbackFunctionModules(ScriptState* scriptStat
|
| DEFINE_TRACE(VoidCallbackFunctionModules) {}
|
|
|
| DEFINE_TRACE_WRAPPERS(VoidCallbackFunctionModules) {
|
| - visitor->traceWrappers(&m_callback.cast<v8::Object>());
|
| + visitor->traceWrappers(m_callback.cast<v8::Value>());
|
| }
|
|
|
| bool VoidCallbackFunctionModules::call(ScriptWrappable* scriptWrappable) {
|
|
|