summaryrefslogtreecommitdiffstats
path: root/WebCore/bridge/runtime_method.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bridge/runtime_method.h')
-rw-r--r--WebCore/bridge/runtime_method.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bridge/runtime_method.h b/WebCore/bridge/runtime_method.h
index adc68f6..bb983f9 100644
--- a/WebCore/bridge/runtime_method.h
+++ b/WebCore/bridge/runtime_method.h
@@ -45,13 +45,13 @@ public:
return exec->lexicalGlobalObject()->functionPrototype();
}
- static PassRefPtr<StructureID> createStructureID(JSValue* prototype)
+ static PassRefPtr<Structure> createStructure(JSValuePtr prototype)
{
- return StructureID::create(prototype, TypeInfo(ObjectType, ImplementsHasInstance));
+ return Structure::create(prototype, TypeInfo(ObjectType, ImplementsHasInstance));
}
private:
- static JSValue* lengthGetter(ExecState*, const Identifier&, const PropertySlot&);
+ static JSValuePtr lengthGetter(ExecState*, const Identifier&, const PropertySlot&);
virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
virtual CallType getCallData(CallData&);