summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@nokia.com>2010-04-06 10:36:47 (GMT)
committerJocelyn Turcotte <jocelyn.turcotte@nokia.com>2010-04-06 10:36:47 (GMT)
commitbb35b65bbfba82e0dd0ac306d3dab54436cdaff6 (patch)
tree8174cb262a960ff7b2e4aa8f1aaf154db71d2636 /src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp
parent4b27d0d887269583a0f76e922948f8c25e96ab88 (diff)
downloadQt-bb35b65bbfba82e0dd0ac306d3dab54436cdaff6.zip
Qt-bb35b65bbfba82e0dd0ac306d3dab54436cdaff6.tar.gz
Qt-bb35b65bbfba82e0dd0ac306d3dab54436cdaff6.tar.bz2
Update src/3rdparty/webkit from trunk.
Imported from 839d8709327f925aacb3b6362c06152594def97e in branch qtwebkit-2.0 of repository git://gitorious.org/+qtwebkit-developers/webkit/qtwebkit.git Rubber-stamped-by: Simon Hausmann
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp62
1 files changed, 34 insertions, 28 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp b/src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp
index 48dccd3..bf44967 100644
--- a/src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp
+++ b/src/3rdparty/webkit/WebCore/generated/JSClientRect.cpp
@@ -35,13 +35,13 @@ ASSERT_CLASS_FITS_IN_CELL(JSClientRect);
static const HashTableValue JSClientRectTableValues[8] =
{
- { "top", DontDelete|ReadOnly, (intptr_t)jsClientRectTop, (intptr_t)0 },
- { "right", DontDelete|ReadOnly, (intptr_t)jsClientRectRight, (intptr_t)0 },
- { "bottom", DontDelete|ReadOnly, (intptr_t)jsClientRectBottom, (intptr_t)0 },
- { "left", DontDelete|ReadOnly, (intptr_t)jsClientRectLeft, (intptr_t)0 },
- { "width", DontDelete|ReadOnly, (intptr_t)jsClientRectWidth, (intptr_t)0 },
- { "height", DontDelete|ReadOnly, (intptr_t)jsClientRectHeight, (intptr_t)0 },
- { "constructor", DontEnum|ReadOnly, (intptr_t)jsClientRectConstructor, (intptr_t)0 },
+ { "top", DontDelete|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectTop), (intptr_t)0 },
+ { "right", DontDelete|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectRight), (intptr_t)0 },
+ { "bottom", DontDelete|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectBottom), (intptr_t)0 },
+ { "left", DontDelete|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectLeft), (intptr_t)0 },
+ { "width", DontDelete|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectWidth), (intptr_t)0 },
+ { "height", DontDelete|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectHeight), (intptr_t)0 },
+ { "constructor", DontEnum|ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsClientRectConstructor), (intptr_t)0 },
{ 0, 0, 0, 0 }
};
@@ -80,7 +80,7 @@ public:
static PassRefPtr<Structure> createStructure(JSValue proto)
{
- return Structure::create(proto, TypeInfo(ObjectType, StructureFlags));
+ return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
}
protected:
@@ -148,57 +148,63 @@ bool JSClientRect::getOwnPropertyDescriptor(ExecState* exec, const Identifier& p
return getStaticValueDescriptor<JSClientRect, Base>(exec, &JSClientRectTable, this, propertyName, descriptor);
}
-JSValue jsClientRectTop(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectTop(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slotBase));
UNUSED_PARAM(exec);
ClientRect* imp = static_cast<ClientRect*>(castedThis->impl());
- return jsNumber(exec, imp->top());
+ JSValue result = jsNumber(exec, imp->top());
+ return result;
}
-JSValue jsClientRectRight(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectRight(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slotBase));
UNUSED_PARAM(exec);
ClientRect* imp = static_cast<ClientRect*>(castedThis->impl());
- return jsNumber(exec, imp->right());
+ JSValue result = jsNumber(exec, imp->right());
+ return result;
}
-JSValue jsClientRectBottom(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectBottom(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slotBase));
UNUSED_PARAM(exec);
ClientRect* imp = static_cast<ClientRect*>(castedThis->impl());
- return jsNumber(exec, imp->bottom());
+ JSValue result = jsNumber(exec, imp->bottom());
+ return result;
}
-JSValue jsClientRectLeft(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectLeft(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slotBase));
UNUSED_PARAM(exec);
ClientRect* imp = static_cast<ClientRect*>(castedThis->impl());
- return jsNumber(exec, imp->left());
+ JSValue result = jsNumber(exec, imp->left());
+ return result;
}
-JSValue jsClientRectWidth(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectWidth(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slotBase));
UNUSED_PARAM(exec);
ClientRect* imp = static_cast<ClientRect*>(castedThis->impl());
- return jsNumber(exec, imp->width());
+ JSValue result = jsNumber(exec, imp->width());
+ return result;
}
-JSValue jsClientRectHeight(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectHeight(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* castedThis = static_cast<JSClientRect*>(asObject(slotBase));
UNUSED_PARAM(exec);
ClientRect* imp = static_cast<ClientRect*>(castedThis->impl());
- return jsNumber(exec, imp->height());
+ JSValue result = jsNumber(exec, imp->height());
+ return result;
}
-JSValue jsClientRectConstructor(ExecState* exec, const Identifier&, const PropertySlot& slot)
+JSValue jsClientRectConstructor(ExecState* exec, JSValue slotBase, const Identifier&)
{
- JSClientRect* domObject = static_cast<JSClientRect*>(asObject(slot.slotBase()));
+ JSClientRect* domObject = static_cast<JSClientRect*>(asObject(slotBase));
return JSClientRect::getConstructor(exec, domObject->globalObject());
}
JSValue JSClientRect::getConstructor(ExecState* exec, JSGlobalObject* globalObject)