HomeSort by relevance Sort by last modified time
    Searched defs:handlerFunction (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8EventListener.cpp 73 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
75 if (handlerFunction.IsEmpty() || receiver.IsEmpty())
93 return frame->script().callFunction(handlerFunction, receiver, WTF_ARRAY_LENGTH(parameters), parameters);
V8WorkerGlobalScopeEventListener.cpp 83 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
85 if (handlerFunction.IsEmpty() || receiver.IsEmpty())
92 v8::ScriptOrigin origin = handlerFunction->GetScriptOrigin();
96 lineNumber = handlerFunction->GetScriptLineNumber() + 1;
103 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(handlerFunction, context, receiver, WTF_ARRAY_LENGTH(parameters), parameters, isolate);

Completed in 98 milliseconds