diff options
Diffstat (limited to 'WebCore/bindings/js/JSDOMWindowBase.h')
-rw-r--r-- | WebCore/bindings/js/JSDOMWindowBase.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/WebCore/bindings/js/JSDOMWindowBase.h b/WebCore/bindings/js/JSDOMWindowBase.h index 6d93196..84cc81f 100644 --- a/WebCore/bindings/js/JSDOMWindowBase.h +++ b/WebCore/bindings/js/JSDOMWindowBase.h @@ -40,7 +40,6 @@ namespace WebCore { class JSDOMWindowBasePrivate; - // This is the only WebCore JS binding which does not inherit from DOMObject class JSDOMWindowBase : public JSDOMGlobalObject { typedef JSDOMGlobalObject Base; protected: @@ -52,9 +51,6 @@ namespace WebCore { DOMWindow* impl() const { return d()->impl.get(); } virtual ScriptExecutionContext* scriptExecutionContext() const; - virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); - virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&); - // Called just before removing this window from the JSDOMWindowShell. void willRemoveFromWindowShell(); @@ -62,15 +58,12 @@ namespace WebCore { static const JSC::ClassInfo s_info; virtual JSC::ExecState* globalExec(); - virtual bool supportsProfiling() const; - virtual bool shouldInterruptScript() const; bool allowsAccessFrom(JSC::ExecState*) const; bool allowsAccessFromNoErrorMessage(JSC::ExecState*) const; bool allowsAccessFrom(JSC::ExecState*, String& message) const; - void printErrorMessage(const String&) const; // Don't call this version of allowsAccessFrom -- it's a slightly incorrect implementation used only by WebScriptObject @@ -89,10 +82,6 @@ namespace WebCore { JSDOMWindowShell* shell; }; - static JSC::JSValue childFrameGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&); - static JSC::JSValue indexGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&); - static JSC::JSValue namedItemGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&); - bool allowsAccessFromPrivate(const JSC::JSGlobalObject*) const; String crossDomainAccessErrorMessage(const JSC::JSGlobalObject*) const; @@ -100,6 +89,9 @@ namespace WebCore { }; // Returns a JSDOMWindow or jsNull() + // JSDOMGlobalObject* is ignored, accesing a window in any context will + // use that DOMWindow's prototype chain. + JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, DOMWindow*); JSC::JSValue toJS(JSC::ExecState*, DOMWindow*); // Returns JSDOMWindow or 0 |