summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bridge/c/CRuntimeObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bridge/c/CRuntimeObject.h')
-rw-r--r--Source/WebCore/bridge/c/CRuntimeObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/bridge/c/CRuntimeObject.h b/Source/WebCore/bridge/c/CRuntimeObject.h
index 267d71e..85815fb 100644
--- a/Source/WebCore/bridge/c/CRuntimeObject.h
+++ b/Source/WebCore/bridge/c/CRuntimeObject.h
@@ -44,9 +44,9 @@ public:
static const ClassInfo s_info;
- static PassRefPtr<Structure> createStructure(JSValue prototype)
+ static PassRefPtr<Structure> createStructure(JSGlobalData& globalData, JSValue prototype)
{
- return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
+ return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
}
};