/* 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(SVG) #include "SVGElement.h" #include "JSSVGAnimatedTransformList.h" #include #include "JSSVGTransformList.h" #include "SVGTransformList.h" using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSSVGAnimatedTransformList) /* Hash table */ static const HashTableValue JSSVGAnimatedTransformListTableValues[3] = { { "baseVal", DontDelete|ReadOnly, (intptr_t)jsSVGAnimatedTransformListBaseVal, (intptr_t)0 }, { "animVal", DontDelete|ReadOnly, (intptr_t)jsSVGAnimatedTransformListAnimVal, (intptr_t)0 }, { 0, 0, 0, 0 } }; static const HashTable JSSVGAnimatedTransformListTable = #if ENABLE(PERFECT_HASH_SIZE) { 1, JSSVGAnimatedTransformListTableValues, 0 }; #else { 4, 3, JSSVGAnimatedTransformListTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSSVGAnimatedTransformListPrototypeTableValues[1] = { { 0, 0, 0, 0 } }; static const HashTable JSSVGAnimatedTransformListPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGAnimatedTransformListPrototypeTableValues, 0 }; #else { 1, 0, JSSVGAnimatedTransformListPrototypeTableValues, 0 }; #endif const ClassInfo JSSVGAnimatedTransformListPrototype::s_info = { "SVGAnimatedTransformListPrototype", 0, &JSSVGAnimatedTransformListPrototypeTable, 0 }; JSObject* JSSVGAnimatedTransformListPrototype::self(ExecState* exec) { return getDOMPrototype(exec); } const ClassInfo JSSVGAnimatedTransformList::s_info = { "SVGAnimatedTransformList", 0, &JSSVGAnimatedTransformListTable, 0 }; JSSVGAnimatedTransformList::JSSVGAnimatedTransformList(PassRefPtr structure, PassRefPtr impl, SVGElement* context) : DOMObject(structure) , m_context(context) , m_impl(impl) { } JSSVGAnimatedTransformList::~JSSVGAnimatedTransformList() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSSVGAnimatedTransformList::createPrototype(ExecState* exec) { return new (exec) JSSVGAnimatedTransformListPrototype(JSSVGAnimatedTransformListPrototype::createStructure(exec->lexicalGlobalObject()->objectPrototype())); } bool JSSVGAnimatedTransformList::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGAnimatedTransformListTable, this, propertyName, slot); } JSValuePtr jsSVGAnimatedTransformListBaseVal(ExecState* exec, const Identifier&, const PropertySlot& slot) { SVGAnimatedTransformList* imp = static_cast(static_cast(asObject(slot.slotBase()))->impl()); return toJS(exec, WTF::getPtr(imp->baseVal()), static_cast(asObject(slot.slotBase()))->context()); } JSValuePtr jsSVGAnimatedTransformListAnimVal(ExecState* exec, const Identifier&, const PropertySlot& slot) { SVGAnimatedTransformList* imp = static_cast(static_cast(asObject(slot.slotBase()))->impl()); return toJS(exec, WTF::getPtr(imp->animVal()), static_cast(asObject(slot.slotBase()))->context()); } JSC::JSValuePtr toJS(JSC::ExecState* exec, SVGAnimatedTransformList* object, SVGElement* context) { return getDOMObjectWrapper(exec, object, context); } SVGAnimatedTransformList* toSVGAnimatedTransformList(JSC::JSValuePtr value) { return value->isObject(&JSSVGAnimatedTransformList::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(SVG)