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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8LazyEventListener.h 47 // V8LazyEventListener is a wrapper for a JavaScript code string that is compiled and evaluated when an event is fired.
48 // A V8LazyEventListener is either a HTML or SVG event handler.
49 class V8LazyEventListener : public V8AbstractEventListener {
51 static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node)
53 return adoptRef(new V8LazyEventListener(functionName, eventParameterName, code, sourceURL, position, node));
62 V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*);
V8LazyEventListener.cpp 32 #include "bindings/v8/V8LazyEventListener.h"
54 V8LazyEventListener::V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node)
76 v8::Local<v8::Value> V8LazyEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
110 void V8LazyEventListener::prepareListenerObject(ScriptExecutionContext* context)

Completed in 85 milliseconds