summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bridge/runtime_method.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bridge/runtime_method.h')
-rw-r--r--Source/WebCore/bridge/runtime_method.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/bridge/runtime_method.h b/Source/WebCore/bridge/runtime_method.h
index c0c9f16..9df796e 100644
--- a/Source/WebCore/bridge/runtime_method.h
+++ b/Source/WebCore/bridge/runtime_method.h
@@ -45,9 +45,9 @@ public:
return globalObject->functionPrototype();
}
- 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);
}
protected: