~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/generated/JSSVGHKernElement.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include "config.h"
22
22
 
23
 
 
24
23
#if ENABLE(SVG) && ENABLE(SVG_FONTS)
25
24
 
26
 
#include "SVGElement.h"
27
25
#include "JSSVGHKernElement.h"
28
26
 
 
27
#include "SVGHKernElement.h"
29
28
#include <wtf/GetPtr.h>
30
29
 
31
 
#include "SVGHKernElement.h"
32
 
 
33
 
 
34
30
using namespace JSC;
35
31
 
36
32
namespace WebCore {
37
33
 
38
 
ASSERT_CLASS_FITS_IN_CELL(JSSVGHKernElement)
 
34
ASSERT_CLASS_FITS_IN_CELL(JSSVGHKernElement);
39
35
 
40
36
/* Hash table for prototype */
41
37
 
44
40
    { 0, 0, 0, 0 }
45
41
};
46
42
 
47
 
static const HashTable JSSVGHKernElementPrototypeTable =
 
43
static JSC_CONST_HASHTABLE HashTable JSSVGHKernElementPrototypeTable =
48
44
#if ENABLE(PERFECT_HASH_SIZE)
49
45
    { 0, JSSVGHKernElementPrototypeTableValues, 0 };
50
46
#else
60
56
 
61
57
const ClassInfo JSSVGHKernElement::s_info = { "SVGHKernElement", &JSSVGElement::s_info, 0, 0 };
62
58
 
63
 
JSSVGHKernElement::JSSVGHKernElement(PassRefPtr<Structure> structure, PassRefPtr<SVGHKernElement> impl)
64
 
    : JSSVGElement(structure, impl)
 
59
JSSVGHKernElement::JSSVGHKernElement(NonNullPassRefPtr<Structure> structure, JSDOMGlobalObject* globalObject, PassRefPtr<SVGHKernElement> impl)
 
60
    : JSSVGElement(structure, globalObject, impl)
65
61
{
66
62
}
67
63