diff -r 000000000000 -r 4f2f89ce4247 WebCore/generated/JSMessageChannel.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebCore/generated/JSMessageChannel.cpp Fri Sep 17 09:02:29 2010 +0300 @@ -0,0 +1,184 @@ +/* + 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" +#include "JSMessageChannel.h" + +#include "JSMessagePort.h" +#include "MessageChannel.h" +#include "MessagePort.h" +#include + +using namespace JSC; + +namespace WebCore { + +ASSERT_CLASS_FITS_IN_CELL(JSMessageChannel); + +/* Hash table */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSMessageChannelTableValues[4] = +{ + { "port1", DontDelete | ReadOnly, (intptr_t)static_cast(jsMessageChannelPort1), (intptr_t)0 THUNK_GENERATOR(0) }, + { "port2", DontDelete | ReadOnly, (intptr_t)static_cast(jsMessageChannelPort2), (intptr_t)0 THUNK_GENERATOR(0) }, + { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsMessageChannelConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSMessageChannelTable = { 8, 7, JSMessageChannelTableValues, 0 }; +/* Hash table for constructor */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSMessageChannelConstructorTableValues[1] = +{ + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSMessageChannelConstructorTable = { 1, 0, JSMessageChannelConstructorTableValues, 0 }; +const ClassInfo JSMessageChannelConstructor::s_info = { "MessageChannelConstructor", 0, &JSMessageChannelConstructorTable, 0 }; + +JSMessageChannelConstructor::JSMessageChannelConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) + : DOMConstructorObject(JSMessageChannelConstructor::createStructure(globalObject->objectPrototype()), globalObject) +{ + putDirect(exec->propertyNames().prototype, JSMessageChannelPrototype::self(exec, globalObject), DontDelete | ReadOnly); +} + +bool JSMessageChannelConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSMessageChannelConstructorTable, this, propertyName, slot); +} + +bool JSMessageChannelConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, &JSMessageChannelConstructorTable, this, propertyName, descriptor); +} + +ConstructType JSMessageChannelConstructor::getConstructData(ConstructData& constructData) +{ + constructData.native.function = constructJSMessageChannel; + return ConstructTypeHost; +} + +/* Hash table for prototype */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSMessageChannelPrototypeTableValues[1] = +{ + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSMessageChannelPrototypeTable = { 1, 0, JSMessageChannelPrototypeTableValues, 0 }; +static const HashTable* getJSMessageChannelPrototypeTable(ExecState* exec) +{ + return getHashTableForGlobalData(exec->globalData(), &JSMessageChannelPrototypeTable); +} +const ClassInfo JSMessageChannelPrototype::s_info = { "MessageChannelPrototype", 0, 0, getJSMessageChannelPrototypeTable }; + +JSObject* JSMessageChannelPrototype::self(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMPrototype(exec, globalObject); +} + +static const HashTable* getJSMessageChannelTable(ExecState* exec) +{ + return getHashTableForGlobalData(exec->globalData(), &JSMessageChannelTable); +} +const ClassInfo JSMessageChannel::s_info = { "MessageChannel", 0, 0, getJSMessageChannelTable }; + +JSMessageChannel::JSMessageChannel(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) + : DOMObjectWithGlobalPointer(structure, globalObject) + , m_impl(impl) +{ +} + +JSMessageChannel::~JSMessageChannel() +{ + forgetDOMObject(this, impl()); +} + +JSObject* JSMessageChannel::createPrototype(ExecState* exec, JSGlobalObject* globalObject) +{ + return new (exec) JSMessageChannelPrototype(globalObject, JSMessageChannelPrototype::createStructure(globalObject->objectPrototype())); +} + +bool JSMessageChannel::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, getJSMessageChannelTable(exec), this, propertyName, slot); +} + +bool JSMessageChannel::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, getJSMessageChannelTable(exec), this, propertyName, descriptor); +} + +JSValue jsMessageChannelPort1(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSMessageChannel* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + MessageChannel* imp = static_cast(castedThis->impl()); + JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->port1())); + return result; +} + +JSValue jsMessageChannelPort2(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSMessageChannel* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + MessageChannel* imp = static_cast(castedThis->impl()); + JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->port2())); + return result; +} + +JSValue jsMessageChannelConstructor(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSMessageChannel* domObject = static_cast(asObject(slotBase)); + return JSMessageChannel::getConstructor(exec, domObject->globalObject()); +} +JSValue JSMessageChannel::getConstructor(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMConstructor(exec, static_cast(globalObject)); +} + +JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, MessageChannel* object) +{ + return getDOMObjectWrapper(exec, globalObject, object); +} +MessageChannel* toMessageChannel(JSC::JSValue value) +{ + return value.inherits(&JSMessageChannel::s_info) ? static_cast(asObject(value))->impl() : 0; +} + +}