Searched defs:worldContext (Results 1 - 9 of 9) sorted by relevance

/external/webkit/WebCore/bindings/v8/
H A DV8WorkerContextEventListener.h47 static PassRefPtr<V8WorkerContextEventListener> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) argument
49 return adoptRef(new V8WorkerContextEventListener(listener, isInline, worldContext));
56 V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
H A DV8AbstractEventListener.h100 V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext);
111 const WorldContextHandle& worldContext() const { return m_worldContext; } function in class:WebCore::V8AbstractEventListener
H A DV8LazyEventListener.h48 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext) argument
50 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, lineNumber, columnNumber, worldContext));
59 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext);
H A DV8AbstractEventListener.cpp54 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext) argument
58 , m_worldContext(worldContext)
80 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
120 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
H A DV8LazyEventListener.cpp44 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext) argument
45 : V8AbstractEventListener(true, worldContext)
91 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy);
H A DV8WorkerContextEventListener.cpp52 V8WorkerContextEventListener::V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) argument
53 : V8EventListener(listener, isInline, worldContext)
H A DV8Proxy.cpp908 v8::Local<v8::Context> toV8Context(ScriptExecutionContext* context, const WorldContextHandle& worldContext) argument
912 return worldContext.adjustedContext(proxy);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8CustomEventListener.h47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext) argument
49 return adoptRef(new V8EventListener(listener, isAttribute, worldContext));
53 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
H A DV8CustomEventListener.cpp38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext) argument
39 : V8AbstractEventListener(isAttribute, worldContext)

Completed in 55 milliseconds