Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h |
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h |
| index cead83b88fe6e72bcd5d408f786c4bb5fb18aef7..11d3d9ff3d7615dc0aa32a0606fc75efa0f81cec 100644 |
| --- a/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h |
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h |
| @@ -8,6 +8,7 @@ |
| #include "bindings/core/v8/Iterable.h" |
| #include "bindings/core/v8/StringOrCSSVariableReferenceValue.h" |
| #include "core/css/cssom/CSSStyleValue.h" |
| +#include "core/css/parser/CSSParserTokenRange.h" |
| #include "wtf/Vector.h" |
| namespace blink { |
| @@ -21,6 +22,10 @@ public: |
| return new CSSTokenStreamValue(fragments); |
| } |
| + static CSSTokenStreamValue* fromCSSValue(const CSSValue&); |
| + |
| + static CSSTokenStreamValue* fromParserTokenRange(CSSParserTokenRange, StringBuilder&, bool); |
|
meade_UTC10
2016/08/19 08:43:52
Can this be a private method?
anthonyhkf
2016/08/22 03:19:21
Done.
|
| + |
| CSSValue* toCSSValue() const override; |
| StyleValueType type() const override { return TokenStreamType; } |