| Index: third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| index 7ef45d5b4d037dc4a5a1822504b3442981d4b292..12020f5dd76b45e30df9fcd5fa8246b3fae3cc36 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| @@ -116,7 +116,7 @@ void ScheduledAction::execute(LocalFrame* frame)
|
| DVLOG(1) << "ScheduledAction::execute " << this << ": have function";
|
| Vector<v8::Local<v8::Value>> info;
|
| createLocalHandlesForArgs(&info);
|
| - frame->script().callFunction(m_function.newLocal(m_scriptState->isolate()), m_scriptState->context()->Global(), info.size(), info.data());
|
| + V8ScriptRunner::callFunction(m_function.newLocal(m_scriptState->isolate()), frame->document(), m_scriptState->context()->Global(), info.size(), info.data(), m_scriptState->isolate());
|
| } else {
|
| DVLOG(1) << "ScheduledAction::execute " << this << ": executing from source";
|
| frame->script().executeScriptAndReturnValue(m_scriptState->context(), ScriptSourceCode(m_code));
|
|
|