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

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/generated/JSSVGTSpanElement.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)
25
24
 
26
 
#include "SVGElement.h"
27
25
#include "JSSVGTSpanElement.h"
28
26
 
 
27
#include "SVGTSpanElement.h"
29
28
#include <wtf/GetPtr.h>
30
29
 
31
 
#include "SVGTSpanElement.h"
32
 
 
33
 
 
34
30
using namespace JSC;
35
31
 
36
32
namespace WebCore {
37
33
 
38
 
ASSERT_CLASS_FITS_IN_CELL(JSSVGTSpanElement)
 
34
ASSERT_CLASS_FITS_IN_CELL(JSSVGTSpanElement);
39
35
 
40
36
/* Hash table for prototype */
41
37
 
44
40
    { 0, 0, 0, 0 }
45
41
};
46
42
 
47
 
static const HashTable JSSVGTSpanElementPrototypeTable =
 
43
static JSC_CONST_HASHTABLE HashTable JSSVGTSpanElementPrototypeTable =
48
44
#if ENABLE(PERFECT_HASH_SIZE)
49
45
    { 0, JSSVGTSpanElementPrototypeTableValues, 0 };
50
46
#else
60
56
 
61
57
const ClassInfo JSSVGTSpanElement::s_info = { "SVGTSpanElement", &JSSVGTextPositioningElement::s_info, 0, 0 };
62
58
 
63
 
JSSVGTSpanElement::JSSVGTSpanElement(PassRefPtr<Structure> structure, PassRefPtr<SVGTSpanElement> impl)
64
 
    : JSSVGTextPositioningElement(structure, impl)
 
59
JSSVGTSpanElement::JSSVGTSpanElement(NonNullPassRefPtr<Structure> structure, JSDOMGlobalObject* globalObject, PassRefPtr<SVGTSpanElement> impl)
 
60
    : JSSVGTextPositioningElement(structure, globalObject, impl)
65
61
{
66
62
}
67
63