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

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/generated/JSSVGFontFaceSrcElement.h

  • 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:
21
21
#ifndef JSSVGFontFaceSrcElement_h
22
22
#define JSSVGFontFaceSrcElement_h
23
23
 
24
 
 
25
24
#if ENABLE(SVG) && ENABLE(SVG_FONTS)
26
25
 
27
26
#include "JSSVGElement.h"
 
27
#include "SVGElement.h"
28
28
 
29
29
namespace WebCore {
30
30
 
33
33
class JSSVGFontFaceSrcElement : public JSSVGElement {
34
34
    typedef JSSVGElement Base;
35
35
public:
36
 
    JSSVGFontFaceSrcElement(PassRefPtr<JSC::Structure>, PassRefPtr<SVGFontFaceSrcElement>);
 
36
    JSSVGFontFaceSrcElement(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<SVGFontFaceSrcElement>);
37
37
    static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
38
38
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
39
39
    static const JSC::ClassInfo s_info;
42
42
 
43
43
 
44
44
class JSSVGFontFaceSrcElementPrototype : public JSC::JSObject {
 
45
    typedef JSC::JSObject Base;
45
46
public:
46
47
    static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
47
48
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
48
49
    static const JSC::ClassInfo s_info;
49
 
    JSSVGFontFaceSrcElementPrototype(PassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
 
50
    JSSVGFontFaceSrcElementPrototype(NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
50
51
};
51
52
 
52
53