summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h')
-rw-r--r--Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h b/Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h
index 12a85ae..03f116f 100644
--- a/Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h
+++ b/Source/WebCore/bridge/jni/jsc/JavaRuntimeObject.h
@@ -42,9 +42,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);
}
};