| Index: third_party/WebKit/Source/core/css/StyleColor.h
|
| diff --git a/third_party/WebKit/Source/core/css/StyleColor.h b/third_party/WebKit/Source/core/css/StyleColor.h
|
| index c5925f2753d7050acf7f3f4c2319cc9cafb2dfa3..0a2b8077b66f64d62b3c7699530d089f8e763c90 100644
|
| --- a/third_party/WebKit/Source/core/css/StyleColor.h
|
| +++ b/third_party/WebKit/Source/core/css/StyleColor.h
|
| @@ -59,6 +59,10 @@ class StyleColor {
|
| static bool isColorKeyword(CSSValueID);
|
| static bool isSystemColor(CSSValueID);
|
|
|
| + protected:
|
| + Color color() const { return m_color; }
|
| + void setCurrentColor(bool currentColor) { m_currentColor = currentColor; }
|
| +
|
| private:
|
| Color m_color;
|
| bool m_currentColor;
|
|
|