OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CSSParserToken_h | 5 #ifndef CSSParserToken_h |
6 #define CSSParserToken_h | 6 #define CSSParserToken_h |
7 | 7 |
8 #include "core/css/CSSPrimitiveValue.h" | 8 #include "core/css/CSSPrimitiveValue.h" |
9 #include "wtf/text/WTFString.h" | 9 #include "wtf/text/WTFString.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 PercentageToken, | 22 PercentageToken, |
23 DimensionToken, | 23 DimensionToken, |
24 IncludeMatchToken, | 24 IncludeMatchToken, |
25 DashMatchToken, | 25 DashMatchToken, |
26 PrefixMatchToken, | 26 PrefixMatchToken, |
27 SuffixMatchToken, | 27 SuffixMatchToken, |
28 SubstringMatchToken, | 28 SubstringMatchToken, |
29 ColumnToken, | 29 ColumnToken, |
30 UnicodeRangeToken, | 30 UnicodeRangeToken, |
31 WhitespaceToken, | 31 WhitespaceToken, |
| 32 CDOToken, |
| 33 CDCToken, |
32 ColonToken, | 34 ColonToken, |
33 SemicolonToken, | 35 SemicolonToken, |
34 CommaToken, | 36 CommaToken, |
35 LeftParenthesisToken, | 37 LeftParenthesisToken, |
36 RightParenthesisToken, | 38 RightParenthesisToken, |
37 LeftBracketToken, | 39 LeftBracketToken, |
38 RightBracketToken, | 40 RightBracketToken, |
39 LeftBraceToken, | 41 LeftBraceToken, |
40 RightBraceToken, | 42 RightBraceToken, |
41 StringToken, | 43 StringToken, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 CSSPrimitiveValue::UnitType m_unit; | 113 CSSPrimitiveValue::UnitType m_unit; |
112 UChar32 m_unicodeRangeStart; | 114 UChar32 m_unicodeRangeStart; |
113 UChar32 m_unicodeRangeEnd; | 115 UChar32 m_unicodeRangeEnd; |
114 | 116 |
115 BlockType m_blockType; | 117 BlockType m_blockType; |
116 }; | 118 }; |
117 | 119 |
118 } // namespace | 120 } // namespace |
119 | 121 |
120 #endif // CSSSParserToken_h | 122 #endif // CSSSParserToken_h |
OLD | NEW |