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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8EventListener.h 44 // V8EventListener is a wrapper of a JS object implements EventListener interface (has handleEvent(event) method), or a JS function
46 class V8EventListener : public V8AbstractEventListener {
48 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate)
50 return adoptRef(new V8EventListener(listener, isAttribute, isolate));
54 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate*);
V8EventListener.cpp 32 #include "bindings/v8/V8EventListener.h"
41 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate)
47 v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext* context)
70 v8::Local<v8::Value> V8EventListener::callListenerFunction(ExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)

Completed in 93 milliseconds