summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptGlue/UserObjectImp.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptGlue/UserObjectImp.h')
-rw-r--r--Source/JavaScriptGlue/UserObjectImp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptGlue/UserObjectImp.h b/Source/JavaScriptGlue/UserObjectImp.h
index 3f64153..c6b8d86 100644
--- a/Source/JavaScriptGlue/UserObjectImp.h
+++ b/Source/JavaScriptGlue/UserObjectImp.h
@@ -58,9 +58,9 @@ public:
JSUserObject *GetJSUserObject() const;
- static PassRefPtr<Structure> createStructure(JSValue prototype)
+ static PassRefPtr<Structure> createStructure(JSGlobalData& globalData, JSValue prototype)
{
- return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames), AnonymousSlotCount, &s_info);
+ return Structure::create(globalData, prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames), AnonymousSlotCount, &s_info);
}
private: