Searched refs:JSDOMWindowShell (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDOMWindowShell.cpp30 #include "JSDOMWindowShell.h"
44 const ClassInfo JSDOMWindowShell::s_info = { "JSDOMWindowShell", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(JSDOMWindowShell) };
46 JSDOMWindowShell::JSDOMWindowShell(Structure* structure, DOMWrapperWorld* world) function in class:WebCore::JSDOMWindowShell
52 void JSDOMWindowShell::finishCreation(VM& vm, PassRefPtr<DOMWindow> window)
59 void JSDOMWindowShell::destroy(JSCell* cell)
61 static_cast<JSDOMWindowShell*>(cell)->JSDOMWindowShell
[all...]
H A DJSDOMWindowShell.h40 class JSDOMWindowShell : public JSC::JSProxy { class in namespace:WebCore
43 JSDOMWindowShell(PassRefPtr<DOMWindow>, JSC::Structure*, DOMWrapperWorld*);
54 static JSDOMWindowShell* create(PassRefPtr<DOMWindow> window, JSC::Structure* structure, DOMWrapperWorld* world)
57 JSDOMWindowShell* shell = new (NotNull, JSC::allocateCell<JSDOMWindowShell>(heap)) JSDOMWindowShell(structure, world);
70 JSDOMWindowShell(JSC::Structure*, DOMWrapperWorld*);
77 JSDOMWindowShell* toJSDOMWindowShell(Frame*, DOMWrapperWorld*);
H A DJSDOMWindowBase.h33 class JSDOMWindowShell;
40 JSDOMWindowBase(JSC::VM&, JSC::Structure*, PassRefPtr<DOMWindow>, JSDOMWindowShell*);
41 void finishCreation(JSC::VM&, JSDOMWindowShell*);
51 // Called just before removing this window from the JSDOMWindowShell.
69 JSDOMWindowShell* shell() const;
75 JSDOMWindowShell* m_shell;
H A DScriptController.h26 #include "JSDOMWindowShell.h"
65 typedef WTF::HashMap< RefPtr<DOMWrapperWorld>, JSC::Strong<JSDOMWindowShell> > ShellMap;
73 JSDOMWindowShell* createWindowShell(DOMWrapperWorld*);
76 JSDOMWindowShell* windowShell(DOMWrapperWorld* world)
81 JSDOMWindowShell* existingWindowShell(DOMWrapperWorld* world) const
119 void attachDebugger(JSDOMWindowShell*, JSC::Debugger*);
163 JSDOMWindowShell* initScript(DOMWrapperWorld* world);
H A DJSEventTargetCustom.cpp31 #include "JSDOMWindowShell.h"
73 if (value.inherits(&JSDOMWindowShell::s_info))
74 return jsCast<JSDOMWindowShell*>(asObject(value))->impl();
H A DScriptController.cpp106 JSDOMWindowShell* ScriptController::createWindowShell(DOMWrapperWorld* world)
109 Structure* structure = JSDOMWindowShell::createStructure(*world->vm(), jsNull());
110 Strong<JSDOMWindowShell> windowShell(*world->vm(), JSDOMWindowShell::create(m_frame->document()->domWindow(), structure, world));
111 Strong<JSDOMWindowShell> windowShell2(windowShell);
129 JSDOMWindowShell* shell = windowShell(world);
179 JSDOMWindowShell* windowShell = iter->value.get();
207 JSDOMWindowShell* ScriptController::initScript(DOMWrapperWorld* world)
213 JSDOMWindowShell* windowShell = createWindowShell(world);
240 JSDOMWindowShell* windowShel
[all...]
H A DJSHTMLFrameSetElementCustom.cpp35 #include "JSDOMWindowShell.h"
55 if (JSDOMWindowShell* window = toJSDOMWindowShell(document->frame(), currentWorld(exec)))
H A DJSDOMWindowBase.cpp55 JSDOMWindowBase::JSDOMWindowBase(VM& vm, Structure* structure, PassRefPtr<DOMWindow> window, JSDOMWindowShell* shell)
62 void JSDOMWindowBase::finishCreation(VM& vm, JSDOMWindowShell* shell)
174 JSDOMWindowShell* JSDOMWindowBase::shell() const
227 if (classInfo == &JSDOMWindowShell::s_info)
228 return jsCast<JSDOMWindowShell*>(asObject(value))->window();
H A DScriptState.cpp71 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld());
H A DScriptCachedFrameData.cpp78 JSDOMWindowShell* windowShell = iter->value.get();
H A DJSHTMLDocumentCustom.cpp39 #include "JSDOMWindowShell.h"
110 JSDOMWindowShell* wrapper = toJSDOMWindowShell(frame, currentWorld(exec));
H A DJSDOMWindowCustom.cpp732 if (object->inherits(&JSDOMWindowShell::s_info))
733 return jsCast<JSDOMWindowShell*>(object)->impl();
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMUtility.mm59 #import "JSDOMWindowShell.h"
126 if (object->inherits(&WebCore::JSDOMWindowShell::s_info))
127 return kit(static_cast<WebCore::JSDOMWindowShell*>(object)->impl());
/macosx-10.9.5/WebCore-7537.78.1/bindings/
H A DScriptControllerBase.cpp102 JSDOMWindowShell* shell = windowShell(mainThreadNormalWorld());
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebFrame.cpp635 if (strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell") != 0)
638 Frame* coreFrame = static_cast<JSDOMWindowShell*>(globalObjectObj)->window()->impl()->frame();
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DDumpRenderTreeSupportEfl.cpp478 if (!strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell"))
479 anyWorldGlobalObject = static_cast<WebCore::JSDOMWindowShell*>(globalObjectObj)->window();
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebFrame.mm1066 if (!strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell"))
1067 anyWorldGlobalObject = static_cast<JSDOMWindowShell*>(globalObjectObj)->window();
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebFrame.cpp2060 if (!strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell"))
2061 anyWorldGlobalObject = static_cast<JSDOMWindowShell*>(globalObjectObj)->window();

Completed in 205 milliseconds