Home | History | Annotate | Download | only in v8

Lines Matching refs:Local

47 V8WorkerGlobalScopeEventListener::V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline)
57 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
78 invokeEventHandler(context, event, v8::Local<v8::Value>::New(isolate, jsEvent));
81 v8::Local<v8::Value> V8WorkerGlobalScopeEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
83 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
84 v8::Local<v8::Object> receiver = getReceiverObject(context, event);
86 return v8::Local<v8::Value>();
101 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(handlerFunction, context, receiver, WTF_ARRAY_LENGTH(parameters), parameters);
108 v8::Local<v8::Object> V8WorkerGlobalScopeEventListener::getReceiverObject(ScriptExecutionContext* context, Event* event)
110 v8::Local<v8::Object> listener = getListenerObject(context);
118 return v8::Local<v8::Object>();
119 return v8::Local<v8::Object>::New(v8::Handle<v8::Object>::Cast(value));