diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 10:34:13 +0100 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 10:34:13 +0100 |
commit | 67ad0519fd165acee4a4d2a94fa502e9e4847bd0 (patch) | |
tree | 1dbf50b3dff8d5ca7e9344733968c72704eb15ff /src/3rdparty/webkit/WebCore/generated/JSSVGGlyphElement.cpp |
Long live Qt!
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSSVGGlyphElement.cpp')
-rw-r--r-- | src/3rdparty/webkit/WebCore/generated/JSSVGGlyphElement.cpp | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSSVGGlyphElement.cpp b/src/3rdparty/webkit/WebCore/generated/JSSVGGlyphElement.cpp new file mode 100644 index 0000000000..0a33be9e04 --- /dev/null +++ b/src/3rdparty/webkit/WebCore/generated/JSSVGGlyphElement.cpp @@ -0,0 +1,76 @@ +/* + 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) && ENABLE(SVG_FONTS) + +#include "SVGElement.h" +#include "JSSVGGlyphElement.h" + +#include <wtf/GetPtr.h> + +#include "SVGGlyphElement.h" + + +using namespace JSC; + +namespace WebCore { + +ASSERT_CLASS_FITS_IN_CELL(JSSVGGlyphElement) + +/* Hash table for prototype */ + +static const HashTableValue JSSVGGlyphElementPrototypeTableValues[1] = +{ + { 0, 0, 0, 0 } +}; + +static const HashTable JSSVGGlyphElementPrototypeTable = +#if ENABLE(PERFECT_HASH_SIZE) + { 0, JSSVGGlyphElementPrototypeTableValues, 0 }; +#else + { 1, 0, JSSVGGlyphElementPrototypeTableValues, 0 }; +#endif + +const ClassInfo JSSVGGlyphElementPrototype::s_info = { "SVGGlyphElementPrototype", 0, &JSSVGGlyphElementPrototypeTable, 0 }; + +JSObject* JSSVGGlyphElementPrototype::self(ExecState* exec) +{ + return getDOMPrototype<JSSVGGlyphElement>(exec); +} + +const ClassInfo JSSVGGlyphElement::s_info = { "SVGGlyphElement", &JSSVGElement::s_info, 0, 0 }; + +JSSVGGlyphElement::JSSVGGlyphElement(PassRefPtr<Structure> structure, PassRefPtr<SVGGlyphElement> impl) + : JSSVGElement(structure, impl) +{ +} + +JSObject* JSSVGGlyphElement::createPrototype(ExecState* exec) +{ + return new (exec) JSSVGGlyphElementPrototype(JSSVGGlyphElementPrototype::createStructure(JSSVGElementPrototype::self(exec))); +} + + +} + +#endif // ENABLE(SVG) && ENABLE(SVG_FONTS) |