Home
last modified time | relevance | path

Searched defs:LinearGradientAttributes (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DLinearGradientAttributes.h26 struct LinearGradientAttributes : GradientAttributes { struct
27 LinearGradientAttributes() in LinearGradientAttributes() argument
40 SVGLength* x1() const { return m_x1.get(); } in x1()
41 SVGLength* y1() const { return m_y1.get(); } in y1()
42 SVGLength* x2() const { return m_x2.get(); } in x2()
43 SVGLength* y2() const { return m_y2.get(); } in y2()
45 void setX1(PassRefPtr<SVGLength> value) { m_x1 = value; m_x1Set = true; } in setX1()
46 void setY1(PassRefPtr<SVGLength> value) { m_y1 = value; m_y1Set = true; } in setY1()
47 void setX2(PassRefPtr<SVGLength> value) { m_x2 = value; m_x2Set = true; } in setX2()
48 void setY2(PassRefPtr<SVGLength> value) { m_y2 = value; m_y2Set = true; } in setY2()
[all …]