summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSImageConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSImageConstructor.h')
-rw-r--r--WebCore/bindings/js/JSImageConstructor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/js/JSImageConstructor.h b/WebCore/bindings/js/JSImageConstructor.h
index 13cce26..578d1cf 100644
--- a/WebCore/bindings/js/JSImageConstructor.h
+++ b/WebCore/bindings/js/JSImageConstructor.h
@@ -28,7 +28,7 @@ namespace WebCore {
class JSImageConstructor : public DOMObject {
public:
JSImageConstructor(JSC::ExecState*, ScriptExecutionContext*);
- Document* document() const { return m_document->impl(); }
+ Document* document() const;
static const JSC::ClassInfo s_info;
@@ -37,7 +37,7 @@ namespace WebCore {
virtual JSC::ConstructType getConstructData(JSC::ConstructData&);
virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
- JSDocument* m_document;
+ JSDOMGlobalObject* m_globalObject;
};
} // namespace WebCore