/* 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 "JSTimeRanges.h" #include #include "TimeRanges.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSTimeRanges) /* Hash table */ static const HashTableValue JSTimeRangesTableValues[2] = { { "length", DontDelete|ReadOnly, (intptr_t)jsTimeRangesLength, (intptr_t)0 }, { 0, 0, 0, 0 } }; static const HashTable JSTimeRangesTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSTimeRangesTableValues, 0 }; #else { 2, 1, JSTimeRangesTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSTimeRangesPrototypeTableValues[3] = { { "start", DontDelete|Function, (intptr_t)jsTimeRangesPrototypeFunctionStart, (intptr_t)1 }, { "end", DontDelete|Function, (intptr_t)jsTimeRangesPrototypeFunctionEnd, (intptr_t)1 }, { 0, 0, 0, 0 } }; static const HashTable JSTimeRangesPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 31, JSTimeRangesPrototypeTableValues, 0 }; #else { 5, 3, JSTimeRangesPrototypeTableValues, 0 }; #endif const ClassInfo JSTimeRangesPrototype::s_info = { "TimeRangesPrototype", 0, &JSTimeRangesPrototypeTable, 0 }; JSObject* JSTimeRangesPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSTimeRangesPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSTimeRangesPrototypeTable, this, propertyName, slot); } const ClassInfo JSTimeRanges::s_info = { "TimeRanges", 0, &JSTimeRangesTable, 0 }; JSTimeRanges::JSTimeRanges(PassRefPtr structure, PassRefPtr impl) : DOMObject(structure) , m_impl(impl) { } JSTimeRanges::~JSTimeRanges() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSTimeRanges::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSTimeRangesPrototype(JSTimeRangesPrototype::createStructure(globalObject->objectPrototype())); } bool JSTimeRanges::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSTimeRangesTable, this, propertyName, slot); } JSValuePtr jsTimeRangesLength(ExecState* exec, const Identifier&, const PropertySlot& slot) { TimeRanges* imp = static_cast(static_cast(asObject(slot.slotBase()))->impl()); return jsNumber(exec, imp->length()); } JSValuePtr jsTimeRangesPrototypeFunctionStart(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSTimeRanges::s_info)) return throwError(exec, TypeError); JSTimeRanges* castedThisObj = static_cast(asObject(thisValue)); TimeRanges* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; unsigned index = args.at(exec, 0)->toInt32(exec); JSC::JSValuePtr result = jsNumber(exec, imp->start(index, ec)); setDOMException(exec, ec); return result; } JSValuePtr jsTimeRangesPrototypeFunctionEnd(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSTimeRanges::s_info)) return throwError(exec, TypeError); JSTimeRanges* castedThisObj = static_cast(asObject(thisValue)); TimeRanges* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; unsigned index = args.at(exec, 0)->toInt32(exec); JSC::JSValuePtr result = jsNumber(exec, imp->end(index, ec)); setDOMException(exec, ec); return result; } JSC::JSValuePtr toJS(JSC::ExecState* exec, TimeRanges* object) { return getDOMObjectWrapper(exec, object); } TimeRanges* toTimeRanges(JSC::JSValuePtr value) { return value->isObject(&JSTimeRanges::s_info) ? static_cast(asObject(value))->impl() : 0; } }