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

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/generated/JSHTMLBlockquoteElement.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:
30
30
class JSHTMLBlockquoteElement : public JSHTMLElement {
31
31
    typedef JSHTMLElement Base;
32
32
public:
33
 
    JSHTMLBlockquoteElement(PassRefPtr<JSC::Structure>, PassRefPtr<HTMLBlockquoteElement>);
 
33
    JSHTMLBlockquoteElement(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<HTMLBlockquoteElement>);
34
34
    static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
35
35
    virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
36
 
    virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValuePtr, JSC::PutPropertySlot&);
 
36
    virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
 
37
    virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
37
38
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
38
39
    static const JSC::ClassInfo s_info;
39
40
 
40
 
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValuePtr prototype)
 
41
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
41
42
    {
42
43
        return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType));
43
44
    }
44
45
 
45
 
    static JSC::JSValuePtr getConstructor(JSC::ExecState*);
 
46
    static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
46
47
};
47
48
 
48
49
 
49
50
class JSHTMLBlockquoteElementPrototype : public JSC::JSObject {
 
51
    typedef JSC::JSObject Base;
50
52
public:
51
53
    static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
52
54
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
53
55
    static const JSC::ClassInfo s_info;
54
 
    JSHTMLBlockquoteElementPrototype(PassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
 
56
    JSHTMLBlockquoteElementPrototype(NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
55
57
};
56
58
 
57
59
// Attributes
58
60
 
59
 
JSC::JSValuePtr jsHTMLBlockquoteElementCite(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
60
 
void setJSHTMLBlockquoteElementCite(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr);
61
 
JSC::JSValuePtr jsHTMLBlockquoteElementConstructor(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
61
JSC::JSValue jsHTMLBlockquoteElementCite(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
62
void setJSHTMLBlockquoteElementCite(JSC::ExecState*, JSC::JSObject*, JSC::JSValue);
 
63
JSC::JSValue jsHTMLBlockquoteElementConstructor(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
62
64
 
63
65
} // namespace WebCore
64
66