Searched refs:worldContext (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DV8WindowErrorHandler.h42 static PassRefPtr<V8WindowErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) argument
44 return adoptRef(new V8WindowErrorHandler(listener, isInline, worldContext));
48 V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
H A DV8WorkerContextErrorHandler.h44 static PassRefPtr<V8WorkerContextErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) argument
46 return adoptRef(new V8WorkerContextErrorHandler(listener, isInline, worldContext));
50 V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
H A DV8EventListener.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 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));
55 V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
H A DV8LazyEventListener.h49 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext) argument
51 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, position, worldContext));
60 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext);
H A DV8EventListener.cpp38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext) argument
39 : V8AbstractEventListener(isAttribute, worldContext)
H A DV8WindowErrorHandler.cpp40 V8WindowErrorHandler::V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) argument
41 : V8EventListener(listener, isInline, worldContext)
H A DV8WorkerContextErrorHandler.cpp42 V8WorkerContextErrorHandler::V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) argument
43 : V8WorkerContextEventListener(listener, isInline, worldContext)
H A DV8AbstractEventListener.cpp55 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext) argument
59 , m_worldContext(worldContext)
95 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
137 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
H A DV8AbstractEventListener.h99 const WorldContextHandle& worldContext() const { return m_worldContext; } function in class:WebCore::V8AbstractEventListener
102 V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext);
H A DV8LazyEventListener.cpp45 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext) argument
46 : V8AbstractEventListener(true, worldContext)
94 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy);
H A DScriptEventListener.cpp93 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->worldContext());
109 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->worldContext());
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.h379 v8::Local<v8::Context> toV8Context(ScriptExecutionContext*, const WorldContextHandle& worldContext);
H A DV8Proxy.cpp828 v8::Local<v8::Context> toV8Context(ScriptExecutionContext* context, const WorldContextHandle& worldContext) argument
832 return worldContext.adjustedContext(proxy);

Completed in 105 milliseconds