Home | History | Annotate | Download | only in style

Lines Matching defs:StyleBackgroundData

36 class StyleBackgroundData : public RefCounted<StyleBackgroundData> {
38 static PassRefPtr<StyleBackgroundData> create() { return adoptRef(new StyleBackgroundData); }
39 PassRefPtr<StyleBackgroundData> copy() const { return adoptRef(new StyleBackgroundData(*this)); }
40 ~StyleBackgroundData() { }
42 bool operator==(const StyleBackgroundData& o) const;
43 bool operator!=(const StyleBackgroundData& o) const
53 StyleBackgroundData();
54 StyleBackgroundData(const StyleBackgroundData&);