summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/generated/JSHistory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSHistory.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/generated/JSHistory.cpp16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSHistory.cpp b/src/3rdparty/webkit/WebCore/generated/JSHistory.cpp
index 015482f..55e22af 100644
--- a/src/3rdparty/webkit/WebCore/generated/JSHistory.cpp
+++ b/src/3rdparty/webkit/WebCore/generated/JSHistory.cpp
@@ -19,16 +19,13 @@
*/
#include "config.h"
-
#include "JSHistory.h"
-#include <wtf/GetPtr.h>
-
#include "History.h"
#include "JSHistoryCustom.h"
-
#include <runtime/Error.h>
#include <runtime/JSNumberCell.h>
+#include <wtf/GetPtr.h>
using namespace JSC;
@@ -100,7 +97,7 @@ JSObject* JSHistory::createPrototype(ExecState* exec, JSGlobalObject* globalObje
bool JSHistory::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
- if (customGetOwnPropertySlot(exec, propertyName, slot))
+ if (getOwnPropertySlotDelegate(exec, propertyName, slot))
return true;
return getStaticValueSlot<JSHistory, Base>(exec, &JSHistoryTable, this, propertyName, slot);
}
@@ -114,18 +111,11 @@ JSValue jsHistoryLength(ExecState* exec, const Identifier&, const PropertySlot&
void JSHistory::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
{
- if (customPut(exec, propertyName, value, slot))
+ if (putDelegate(exec, propertyName, value, slot))
return;
Base::put(exec, propertyName, value, slot);
}
-void JSHistory::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames)
-{
- if (customGetPropertyNames(exec, propertyNames))
- return;
- Base::getPropertyNames(exec, propertyNames);
-}
-
JSValue JSC_HOST_CALL jsHistoryPrototypeFunctionBack(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args)
{
UNUSED_PARAM(args);