summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@nokia.com>2009-07-30 21:35:00 (GMT)
committerTor Arne Vestbø <tor.arne.vestbo@nokia.com>2009-07-31 11:50:24 (GMT)
commitf6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d (patch)
treed1fe0b96eeecdc17ea1a5540bf0830182f34fd18 /src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp
parent819bc9a2f9f86260af8a76027a712b2a310a088d (diff)
downloadQt-f6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d.zip
Qt-f6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d.tar.gz
Qt-f6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d.tar.bz2
Fix up generated files to match the previous commit
The changes to WebCore/bindings/scripts/CodeGeneratorJS.pm will take care of this once we upstream the change.
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp b/src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp
index 39616d6..acee9be 100644
--- a/src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp
+++ b/src/3rdparty/webkit/WebCore/generated/JSPlugin.cpp
@@ -207,11 +207,11 @@ JSValue jsPluginConstructor(ExecState* exec, const Identifier&, const PropertySl
JSPlugin* domObject = static_cast<JSPlugin*>(asObject(slot.slotBase()));
return JSPlugin::getConstructor(exec, domObject->globalObject());
}
-void JSPlugin::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames)
+void JSPlugin::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, bool includeNonEnumerable)
{
for (unsigned i = 0; i < static_cast<Plugin*>(impl())->length(); ++i)
propertyNames.add(Identifier::from(exec, i));
- Base::getPropertyNames(exec, propertyNames);
+ Base::getPropertyNames(exec, propertyNames, includeNonEnumerable);
}
JSValue JSPlugin::getConstructor(ExecState* exec, JSGlobalObject* globalObject)