Searched refs:isolatedWorld (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DScheduledAction.h48 static PassOwnPtr<ScheduledAction> create(JSC::ExecState*, DOMWrapperWorld* isolatedWorld, ContentSecurityPolicy*);
53 ScheduledAction(JSC::ExecState*, JSC::JSValue function, DOMWrapperWorld* isolatedWorld);
54 ScheduledAction(const String& code, DOMWrapperWorld* isolatedWorld) argument
55 : m_function(*isolatedWorld->globalData())
57 , m_isolatedWorld(isolatedWorld)
H A DJSErrorHandler.h40 static PassRefPtr<JSErrorHandler> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld) argument
42 return adoptRef(new JSErrorHandler(listener, wrapper, isAttribute, isolatedWorld));
48 JSErrorHandler(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld);
H A DJSLazyEventListener.h32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
H A DJSErrorHandler.cpp44 JSErrorHandler::JSErrorHandler(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld) argument
45 : JSEventListener(function, wrapper, isAttribute, isolatedWorld)
70 JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(scriptExecutionContext, isolatedWorld());
H A DJSLazyEventListener.cpp39 JSLazyEventListener::JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
40 : JSEventListener(0, wrapper, true, isolatedWorld)
90 JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(executionContext, isolatedWorld());
H A DJSEventListener.h33 static PassRefPtr<JSEventListener> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld) argument
35 return adoptRef(new JSEventListener(listener, wrapper, isAttribute, isolatedWorld));
53 DOMWrapperWorld* isolatedWorld() const { return m_isolatedWorld.get(); } function in class:WebCore::JSEventListener
64 JSEventListener(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld);
H A DScheduledAction.cpp50 PassOwnPtr<ScheduledAction> ScheduledAction::create(ExecState* exec, DOMWrapperWorld* isolatedWorld, ContentSecurityPolicy* policy) argument
60 return new ScheduledAction(ustringToString(string), isolatedWorld);
63 return new ScheduledAction(exec, v, isolatedWorld);
66 ScheduledAction::ScheduledAction(ExecState* exec, JSValue function, DOMWrapperWorld* isolatedWorld) argument
68 , m_isolatedWorld(isolatedWorld)
H A DJSEventListener.cpp36 JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld) argument
38 , m_wrapper(*isolatedWorld->globalData(), wrapper)
40 , m_isolatedWorld(isolatedWorld)
H A DJSDOMWindowShell.cpp178 JSDOMWindowShell* toJSDOMWindowShell(Frame* frame, DOMWrapperWorld* isolatedWorld) argument
182 return frame->script()->windowShell(isolatedWorld);
H A DScriptEventListener.cpp105 return ustringToString(jsFunction->toString(scriptStateFromNode(jsListener->isolatedWorld(), document)));

Completed in 760 milliseconds