| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 1eacbe144bacc4d31926bb429c9a945c81ebf55e..1340afde3b8898cacd8ca3eca03a9b14b08e7e2c 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -38,6 +38,7 @@
|
| #include "core/style/NinePieceImage.h"
|
| #include "core/style/OutlineValue.h"
|
| #include "core/style/SVGComputedStyle.h"
|
| +#include "core/style/SVGComputedStyleDefs.h"
|
| #include "core/style/ShapeValue.h"
|
| #include "core/style/StyleBackgroundData.h"
|
| #include "core/style/StyleBoxData.h"
|
| @@ -1475,6 +1476,7 @@ public:
|
|
|
| const SVGPaintType& fillPaintType() const { return svgStyle().fillPaintType(); }
|
| Color fillPaintColor() const { return svgStyle().fillPaintColor(); }
|
| + void setFillPaintColor(const Color& c) { accessSVGStyle().setFillPaint(SVGPaintType::SVG_PAINTTYPE_RGBCOLOR, c, ""); }
|
| float fillOpacity() const { return svgStyle().fillOpacity(); }
|
| void setFillOpacity(float f) { accessSVGStyle().setFillOpacity(f); }
|
|
|
|
|