Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.h |
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.h b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.h |
| index e4de0877c17aaf9cdf9e0f82349b624563e35230..5f6ef8ac911cd10d72ca124c3429423a275e63e3 100644 |
| --- a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.h |
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.h |
| @@ -27,10 +27,11 @@ public: |
| CSSValue* toCSSValue() const override; |
| -private: |
| + // TODO: Renee: Move this back into private. |
| explicit CSSKeywordValue(const AtomicString& keyword) |
|
meade_UTC10
2016/09/09 01:56:27
It's fine to create another create() method that o
|
| : m_keywordValue(keyword) {} |
| +private: |
| AtomicString m_keywordValue; |
| }; |