Searched defs:isolatedWorld (Results 1 - 7 of 7) sorted by relevance

/external/webkit/WebCore/bindings/js/
H A DScheduledAction.h45 static ScheduledAction* create(JSC::ExecState*, const JSC::ArgList&, DOMWrapperWorld* isolatedWorld);
50 ScheduledAction(JSC::JSValue function, const JSC::ArgList&, DOMWrapperWorld* isolatedWorld);
51 ScheduledAction(const String& code, DOMWrapperWorld* isolatedWorld) argument
53 , m_isolatedWorld(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
67 JSEventListener(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 DJSLazyEventListener.cpp38 JSLazyEventListener::JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
39 : JSEventListener(0, wrapper, true, isolatedWorld)
85 JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(executionContext, isolatedWorld());
H A DScheduledAction.cpp50 ScheduledAction* ScheduledAction::create(ExecState* exec, const ArgList& args, DOMWrapperWorld* isolatedWorld) argument
58 return new ScheduledAction(string, isolatedWorld);
62 return new ScheduledAction(v, argsTail, isolatedWorld);
65 ScheduledAction::ScheduledAction(JSValue function, const ArgList& args, DOMWrapperWorld* isolatedWorld) argument
67 , m_isolatedWorld(isolatedWorld)
H A DJSEventListener.cpp34 JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld) argument
39 , m_isolatedWorld(isolatedWorld)
H A DJSDOMWindowShell.cpp177 JSDOMWindowShell* toJSDOMWindowShell(Frame* frame, DOMWrapperWorld* isolatedWorld) argument
181 return frame->script()->windowShell(isolatedWorld);

Completed in 237 milliseconds