HomeSort by relevance Sort by last modified time
    Searched refs:JSDOMWindowShell (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 30 #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)
47 : Base(*world->globalData(), JSDOMWindowShell::createStructure(*world->globalData(), jsNull()))
54 JSDOMWindowShell::~JSDOMWindowShell()
58 void JSDOMWindowShell::setWindow(PassRefPtr<DOMWindow> domWindow
    [all...]
JSDOMWindowBase.h 37 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;
ScriptController.h 25 #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);
JSDOMWindowShell.h 40 class JSDOMWindowShell : public JSC::JSNonFinalObject {
43 JSDOMWindowShell(PassRefPtr<DOMWindow>, DOMWrapperWorld* world);
44 virtual ~JSDOMWindowShell();
92 JSDOMWindowShell* toJSDOMWindowShell(Frame*, DOMWrapperWorld*);
JSDOMWindowBase.cpp 48 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();
JSHTMLFrameSetElementCustom.cpp 35 #include "JSDOMWindowShell.h"
57 if (JSDOMWindowShell* window = toJSDOMWindowShell(doc->frame(), currentWorld(exec)))
ScriptController.cpp 108 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* shell = iter->second.get()
    [all...]
ScriptState.cpp 65 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld());
JSEventTarget.cpp 32 #include "JSDOMWindowShell.h"
207 if (value.inherits(&JSDOMWindowShell::s_info))
208 return static_cast<JSDOMWindowShell*>(asObject(value))->impl();
ScriptCachedFrameData.cpp 84 JSDOMWindowShell* windowShell = iter->second.get();
JSHTMLDocumentCustom.cpp 39 #include "JSDOMWindowShell.h"
110 JSDOMWindowShell* wrapper = toJSDOMWindowShell(frame, currentWorld(exec));
JSDOMWindowCustom.cpp 811 if (object->inherits(&JSDOMWindowShell::s_info))
812 return static_cast<JSDOMWindowShell*>(object)->impl();
  /external/webkit/Source/WebCore/bindings/objc/
DOMUtility.mm 57 #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/
ScriptControllerBase.cpp 98 JSDOMWindowShell* shell = windowShell(mainThreadNormalWorld());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.cpp 568 if (strcmp(globalObjectObj->classInfo()->className, "JSDOMWindowShell") != 0)
571 Frame* coreFrame = static_cast<JSDOMWindowShell*>(globalObjectObj)->window()->impl()->frame();
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm     [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.cpp     [all...]

Completed in 223 milliseconds