diff -r 000000000000 -r 4f2f89ce4247 WebCore/generated/JSStorageEvent.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebCore/generated/JSStorageEvent.cpp Fri Sep 17 09:02:29 2010 +0300 @@ -0,0 +1,241 @@ +/* + This file is part of the WebKit open source project. + This file has been generated by generate-bindings.pl. DO NOT MODIFY! + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "config.h" + +#if ENABLE(DOM_STORAGE) + +#include "JSStorageEvent.h" + +#include "JSStorage.h" +#include "KURL.h" +#include "Storage.h" +#include "StorageEvent.h" +#include +#include +#include + +using namespace JSC; + +namespace WebCore { + +ASSERT_CLASS_FITS_IN_CELL(JSStorageEvent); + +/* Hash table */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSStorageEventTableValues[7] = +{ + { "key", DontDelete | ReadOnly, (intptr_t)static_cast(jsStorageEventKey), (intptr_t)0 THUNK_GENERATOR(0) }, + { "oldValue", DontDelete | ReadOnly, (intptr_t)static_cast(jsStorageEventOldValue), (intptr_t)0 THUNK_GENERATOR(0) }, + { "newValue", DontDelete | ReadOnly, (intptr_t)static_cast(jsStorageEventNewValue), (intptr_t)0 THUNK_GENERATOR(0) }, + { "url", DontDelete | ReadOnly, (intptr_t)static_cast(jsStorageEventUrl), (intptr_t)0 THUNK_GENERATOR(0) }, + { "storageArea", DontDelete | ReadOnly, (intptr_t)static_cast(jsStorageEventStorageArea), (intptr_t)0 THUNK_GENERATOR(0) }, + { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsStorageEventConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSStorageEventTable = { 16, 15, JSStorageEventTableValues, 0 }; +/* Hash table for constructor */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSStorageEventConstructorTableValues[1] = +{ + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSStorageEventConstructorTable = { 1, 0, JSStorageEventConstructorTableValues, 0 }; +class JSStorageEventConstructor : public DOMConstructorObject { +public: + JSStorageEventConstructor(JSC::ExecState*, JSDOMGlobalObject*); + + virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); + virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); + virtual const JSC::ClassInfo* classInfo() const { return &s_info; } + static const JSC::ClassInfo s_info; + static PassRefPtr createStructure(JSC::JSValue prototype) + { + return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount); + } +protected: + static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; +}; + +const ClassInfo JSStorageEventConstructor::s_info = { "StorageEventConstructor", 0, &JSStorageEventConstructorTable, 0 }; + +JSStorageEventConstructor::JSStorageEventConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) + : DOMConstructorObject(JSStorageEventConstructor::createStructure(globalObject->objectPrototype()), globalObject) +{ + putDirect(exec->propertyNames().prototype, JSStorageEventPrototype::self(exec, globalObject), DontDelete | ReadOnly); +} + +bool JSStorageEventConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSStorageEventConstructorTable, this, propertyName, slot); +} + +bool JSStorageEventConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, &JSStorageEventConstructorTable, this, propertyName, descriptor); +} + +/* Hash table for prototype */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSStorageEventPrototypeTableValues[2] = +{ + { "initStorageEvent", DontDelete | Function, (intptr_t)static_cast(jsStorageEventPrototypeFunctionInitStorageEvent), (intptr_t)8 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSStorageEventPrototypeTable = { 2, 1, JSStorageEventPrototypeTableValues, 0 }; +const ClassInfo JSStorageEventPrototype::s_info = { "StorageEventPrototype", 0, &JSStorageEventPrototypeTable, 0 }; + +JSObject* JSStorageEventPrototype::self(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMPrototype(exec, globalObject); +} + +bool JSStorageEventPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticFunctionSlot(exec, &JSStorageEventPrototypeTable, this, propertyName, slot); +} + +bool JSStorageEventPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticFunctionDescriptor(exec, &JSStorageEventPrototypeTable, this, propertyName, descriptor); +} + +const ClassInfo JSStorageEvent::s_info = { "StorageEvent", &JSEvent::s_info, &JSStorageEventTable, 0 }; + +JSStorageEvent::JSStorageEvent(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) + : JSEvent(structure, globalObject, impl) +{ +} + +JSObject* JSStorageEvent::createPrototype(ExecState* exec, JSGlobalObject* globalObject) +{ + return new (exec) JSStorageEventPrototype(globalObject, JSStorageEventPrototype::createStructure(JSEventPrototype::self(exec, globalObject))); +} + +bool JSStorageEvent::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSStorageEventTable, this, propertyName, slot); +} + +bool JSStorageEvent::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, &JSStorageEventTable, this, propertyName, descriptor); +} + +JSValue jsStorageEventKey(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorageEvent* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + StorageEvent* imp = static_cast(castedThis->impl()); + JSValue result = jsStringOrNull(exec, imp->key()); + return result; +} + +JSValue jsStorageEventOldValue(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorageEvent* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + StorageEvent* imp = static_cast(castedThis->impl()); + JSValue result = jsStringOrNull(exec, imp->oldValue()); + return result; +} + +JSValue jsStorageEventNewValue(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorageEvent* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + StorageEvent* imp = static_cast(castedThis->impl()); + JSValue result = jsStringOrNull(exec, imp->newValue()); + return result; +} + +JSValue jsStorageEventUrl(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorageEvent* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + StorageEvent* imp = static_cast(castedThis->impl()); + JSValue result = jsString(exec, imp->url()); + return result; +} + +JSValue jsStorageEventStorageArea(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorageEvent* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + StorageEvent* imp = static_cast(castedThis->impl()); + JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->storageArea())); + return result; +} + +JSValue jsStorageEventConstructor(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorageEvent* domObject = static_cast(asObject(slotBase)); + return JSStorageEvent::getConstructor(exec, domObject->globalObject()); +} +JSValue JSStorageEvent::getConstructor(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMConstructor(exec, static_cast(globalObject)); +} + +EncodedJSValue JSC_HOST_CALL jsStorageEventPrototypeFunctionInitStorageEvent(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSStorageEvent::s_info)) + return throwVMTypeError(exec); + JSStorageEvent* castedThis = static_cast(asObject(thisValue)); + StorageEvent* imp = static_cast(castedThis->impl()); + const String& typeArg = ustringToString(exec->argument(0).toString(exec)); + bool canBubbleArg = exec->argument(1).toBoolean(exec); + bool cancelableArg = exec->argument(2).toBoolean(exec); + const String& keyArg = ustringToString(exec->argument(3).toString(exec)); + const String& oldValueArg = valueToStringWithNullCheck(exec, exec->argument(4)); + const String& newValueArg = valueToStringWithNullCheck(exec, exec->argument(5)); + const String& urlArg = ustringToString(exec->argument(6).toString(exec)); + Storage* storageAreaArg = toStorage(exec->argument(7)); + + imp->initStorageEvent(typeArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, storageAreaArg); + return JSValue::encode(jsUndefined()); +} + + +} + +#endif // ENABLE(DOM_STORAGE)