~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/bridge/runtime_object.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090515183058-50q5exjo9b1kxy9s
Tags: 1.1.7-1
* New upstream release
* debian/libwebkit-1.0-2.symbols:
- updated with the new symbols in 1.1.7
* debian/libwebkit-dev.install, debian/libwebkit-dev.links,
  debian/rules:
- Build, and ship gtk-doc documentation (Closes: #526683)
* debian/copyright:
- updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    virtual ~RuntimeObjectImp();
39
39
 
40
40
    virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
41
 
    virtual void put(ExecState*, const Identifier& propertyName, JSValuePtr, PutPropertySlot&);
 
41
    virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
42
42
    virtual bool deleteProperty(ExecState* , const Identifier& propertyName);
43
 
    virtual JSValuePtr defaultValue(ExecState*, PreferredPrimitiveType) const;
 
43
    virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
44
44
    virtual CallType getCallData(CallData&);
45
45
    virtual ConstructType getConstructData(ConstructData&);
46
46
    
58
58
        return globalObject->objectPrototype();
59
59
    }
60
60
 
61
 
    static PassRefPtr<Structure> createStructure(JSValuePtr prototype)
 
61
    static PassRefPtr<Structure> createStructure(JSValue prototype)
62
62
    {
63
63
        return Structure::create(prototype, TypeInfo(ObjectType));
64
64
    }
69
69
private:
70
70
    virtual const ClassInfo* classInfo() const { return &s_info; }
71
71
    
72
 
    static JSValuePtr fallbackObjectGetter(ExecState*, const Identifier&, const PropertySlot&);
73
 
    static JSValuePtr fieldGetter(ExecState*, const Identifier&, const PropertySlot&);
74
 
    static JSValuePtr methodGetter(ExecState*, const Identifier&, const PropertySlot&);
 
72
    static JSValue fallbackObjectGetter(ExecState*, const Identifier&, const PropertySlot&);
 
73
    static JSValue fieldGetter(ExecState*, const Identifier&, const PropertySlot&);
 
74
    static JSValue methodGetter(ExecState*, const Identifier&, const PropertySlot&);
75
75
 
76
76
    RefPtr<Bindings::Instance> instance;
77
77
};