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

/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowShell.cpp30 #include "JSDOMWindowShell.h"
42 ASSERT_CLASS_FITS_IN_CELL(JSDOMWindowShell);
44 const ClassInfo JSDOMWindowShell::s_info = { "JSDOMWindowShell", &Base::s_info, 0, 0 };
46 JSDOMWindowShell::JSDOMWindowShell(PassRefPtr<DOMWindow> window, DOMWrapperWorld* world) function in class:WebCore::JSDOMWindowShell
47 : Base(*world->globalData(), JSDOMWindowShell::createStructure(*world->globalData(), jsNull()))
54 JSDOMWindowShell::~JSDOMWindowShell()
58 void JSDOMWindowShell
[all...]
H A DJSDOMWindowBase.h37 class JSDOMWindowShell;
47 JSDOMWindowBase(JSC::JSGlobalData&, JSC::Structure*, PassRefPtr<DOMWindow>, JSDOMWindowShell*);
55 // Called just before removing this window from the JSDOMWindowShell.
80 JSDOMWindowShell* shell() const;
86 JSDOMWindowShell* m_shell;
H A DScriptController.h25 #include "JSDOMWindowShell.h"
67 typedef WTF::HashMap< RefPtr<DOMWrapperWorld>, JSC::Strong<JSDOMWindowShell> > ShellMap;
75 JSDOMWindowShell* createWindowShell(DOMWrapperWorld*);
78 JSDOMWindowShell* windowShell(DOMWrapperWorld* world)
83 JSDOMWindowShell* existingWindowShell(DOMWrapperWorld* world) const
120 void attachDebugger(JSDOMWindowShell*, JSC::Debugger*);
172 JSDOMWindowShell* initScript(DOMWrapperWorld* world);
H A DJSDOMWindowBase.cpp48 JSDOMWindowBase::JSDOMWindowBase(JSGlobalData& globalData, Structure* structure, PassRefPtr<DOMWindow> window, JSDOMWindowShell* shell)
166 JSDOMWindowShell* JSDOMWindowBase::shell() const
219 if (classInfo == &JSDOMWindowShell::s_info)
220 return static_cast<JSDOMWindowShell*>(asObject(value))->window();
H A DJSDOMWindowShell.h40 class JSDOMWindowShell : public JSC::JSNonFinalObject { class in namespace:WebCore
43 JSDOMWindowShell(PassRefPtr<DOMWindow>, DOMWrapperWorld* world);
44 virtual ~JSDOMWindowShell();
92 JSDOMWindowShell* toJSDOMWindowShell(Frame*, DOMWrapperWorld*);
H A DJSHTMLFrameSetElementCustom.cpp35 #include "JSDOMWindowShell.h"
57 if (JSDOMWindowShell* window = toJSDOMWindowShell(doc->frame(), currentWorld(exec)))
H A DScriptController.cpp108 JSDOMWindowShell* ScriptController::createWindowShell(DOMWrapperWorld* world)
111 Strong<JSDOMWindowShell> windowShell(*world->globalData(), new JSDOMWindowShell(m_frame->domWindow(), world));
112 Strong<JSDOMWindowShell> windowShell2(windowShell);
130 JSDOMWindowShell* shell = windowShell(world);
186 JSDOMWindowShell* windowShell = iter->second.get();
211 JSDOMWindowShell* ScriptController::initScript(DOMWrapperWorld* world)
217 JSDOMWindowShell* windowShell = createWindowShell(world);
259 if (JSDOMWindowShell* shell = scriptController->existingWindowShell(currentWorld(exec)))
294 JSDOMWindowShell* shel
[all...]
H A DScriptState.cpp65 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld());
H A DJSEventTarget.cpp32 #include "JSDOMWindowShell.h"
207 if (value.inherits(&JSDOMWindowShell::s_info))
208 return static_cast<JSDOMWindowShell*>(asObject(value))->impl();
H A DScriptCachedFrameData.cpp84 JSDOMWindowShell* windowShell = iter->second.get();
H A DJSHTMLDocumentCustom.cpp39 #include "JSDOMWindowShell.h"
110 JSDOMWindowShell* wrapper = toJSDOMWindowShell(frame, currentWorld(exec));
H A DJSDOMWindowCustom.cpp811 if (object->inherits(&JSDOMWindowShell::s_info))
812 return static_cast<JSDOMWindowShell*>(object)->impl();
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMUtility.mm57 #import "JSDOMWindowShell.h"
131 if (object->inherits(&WebCore::JSDOMWindowShell::s_info))
132 return kit(static_cast<WebCore::JSDOMWindowShell*>(object)->impl());
/external/webkit/Source/WebCore/bindings/
H A DScriptControllerBase.cpp98 JSDOMWindowShell* shell = windowShell(mainThreadNormalWorld());
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebFrame.cpp568 if (strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell") != 0)
571 Frame* coreFrame = static_cast<JSDOMWindowShell*>(globalObjectObj)->window()->impl()->frame();
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFrame.mm1201 if (!strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell"))
1202 anyWorldGlobalObject = static_cast<JSDOMWindowShell*>(globalObjectObj)->window();
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp2554 if (!strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell"))
2555 anyWorldGlobalObject = static_cast<JSDOMWindowShell*>(globalObjectObj)->window();

Completed in 224 milliseconds