| Index: Source/bindings/v8/ScheduledAction.cpp
|
| diff --git a/Source/bindings/v8/ScheduledAction.cpp b/Source/bindings/v8/ScheduledAction.cpp
|
| index a06c9a5c17d9535e80ee0ad8b5f800905194715c..198cb87ef3649608c7d277c9ebc8ccc12d7f06d8 100644
|
| --- a/Source/bindings/v8/ScheduledAction.cpp
|
| +++ b/Source/bindings/v8/ScheduledAction.cpp
|
| @@ -114,7 +114,7 @@ void ScheduledAction::execute(WorkerGlobalScope* worker)
|
| if (!m_function.isEmpty()) {
|
| Vector<v8::Handle<v8::Value> > args;
|
| createLocalHandlesForArgs(&args);
|
| - V8ScriptRunner::callFunction(m_function.newLocal(m_isolate), worker, context->Global(), args.size(), args.data());
|
| + V8ScriptRunner::callFunction(m_function.newLocal(m_isolate), worker, context->Global(), args.size(), args.data(), m_isolate);
|
| } else
|
| worker->script()->evaluate(m_code);
|
| }
|
|
|