/* 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 "JSGeoposition.h" #include "Coordinates.h" #include "Geoposition.h" #include "JSCoordinates.h" #include "KURL.h" #include #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSGeoposition); /* Hash table */ static const HashTableValue JSGeopositionTableValues[3] = { { "coords", DontDelete|ReadOnly, (intptr_t)jsGeopositionCoords, (intptr_t)0 }, { "timestamp", DontDelete|ReadOnly, (intptr_t)jsGeopositionTimestamp, (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSGeopositionTable = #if ENABLE(PERFECT_HASH_SIZE) { 3, JSGeopositionTableValues, 0 }; #else { 4, 3, JSGeopositionTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSGeopositionPrototypeTableValues[2] = { { "toString", DontDelete|DontEnum|Function, (intptr_t)jsGeopositionPrototypeFunctionToString, (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSGeopositionPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSGeopositionPrototypeTableValues, 0 }; #else { 2, 1, JSGeopositionPrototypeTableValues, 0 }; #endif const ClassInfo JSGeopositionPrototype::s_info = { "GeopositionPrototype", 0, &JSGeopositionPrototypeTable, 0 }; JSObject* JSGeopositionPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSGeopositionPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSGeopositionPrototypeTable, this, propertyName, slot); } const ClassInfo JSGeoposition::s_info = { "Geoposition", 0, &JSGeopositionTable, 0 }; JSGeoposition::JSGeoposition(PassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl) { } JSGeoposition::~JSGeoposition() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSGeoposition::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSGeopositionPrototype(JSGeopositionPrototype::createStructure(globalObject->objectPrototype())); } bool JSGeoposition::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSGeopositionTable, this, propertyName, slot); } JSValue jsGeopositionCoords(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSGeoposition* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); Geoposition* imp = static_cast(castedThis->impl()); return toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->coords())); } JSValue jsGeopositionTimestamp(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSGeoposition* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); Geoposition* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->timestamp()); } JSValue JSC_HOST_CALL jsGeopositionPrototypeFunctionToString(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.isObject(&JSGeoposition::s_info)) return throwError(exec, TypeError); JSGeoposition* castedThisObj = static_cast(asObject(thisValue)); Geoposition* imp = static_cast(castedThisObj->impl()); JSC::JSValue result = jsString(exec, imp->toString()); return result; } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Geoposition* object) { return getDOMObjectWrapper(exec, globalObject, object); } Geoposition* toGeoposition(JSC::JSValue value) { return value.isObject(&JSGeoposition::s_info) ? static_cast(asObject(value))->impl() : 0; } }