| 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/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/css/CSSPrimitiveValue.h" | 9 #include "core/css/CSSPrimitiveValue.h" |
| 10 #include "wtf/Allocator.h" | 10 #include "platform/wtf/Allocator.h" |
| 11 #include "wtf/text/StringView.h" | 11 #include "platform/wtf/text/StringView.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 enum CSSParserTokenType { | 15 enum CSSParserTokenType { |
| 16 kIdentToken = 0, | 16 kIdentToken = 0, |
| 17 kFunctionToken, | 17 kFunctionToken, |
| 18 kAtKeywordToken, | 18 kAtKeywordToken, |
| 19 kHashToken, | 19 kHashToken, |
| 20 kUrlToken, | 20 kUrlToken, |
| 21 kBadUrlToken, | 21 kBadUrlToken, |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 struct { | 170 struct { |
| 171 UChar32 start; | 171 UChar32 start; |
| 172 UChar32 end; | 172 UChar32 end; |
| 173 } unicode_range_; | 173 } unicode_range_; |
| 174 }; | 174 }; |
| 175 }; | 175 }; |
| 176 | 176 |
| 177 } // namespace blink | 177 } // namespace blink |
| 178 | 178 |
| 179 #endif // CSSSParserToken_h | 179 #endif // CSSSParserToken_h |
| OLD | NEW |