| 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 CSSParser_h | 5 #ifndef CSSParser_h |
| 6 #define CSSParser_h | 6 #define CSSParser_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "core/css/CSSValue.h" | 10 #include "core/css/CSSValue.h" |
| 11 #include "core/css/StylePropertySet.h" | 11 #include "core/css/StylePropertySet.h" |
| 12 #include "core/css/parser/CSSParserMode.h" | 12 #include "core/css/parser/CSSParserContext.h" |
| 13 #include "platform/graphics/Color.h" | 13 #include "platform/graphics/Color.h" |
| 14 #include <memory> | 14 #include <memory> |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 class CSSParserObserver; | 18 class CSSParserObserver; |
| 19 class CSSParserTokenRange; | 19 class CSSParserTokenRange; |
| 20 class CSSSelectorList; | 20 class CSSSelectorList; |
| 21 class Element; | 21 class Element; |
| 22 class ImmutableStylePropertySet; | 22 class ImmutableStylePropertySet; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 MutableStylePropertySet*, | 100 MutableStylePropertySet*, |
| 101 CSSPropertyID unresolvedProperty, | 101 CSSPropertyID unresolvedProperty, |
| 102 const String&, | 102 const String&, |
| 103 bool important, | 103 bool important, |
| 104 const CSSParserContext&); | 104 const CSSParserContext&); |
| 105 }; | 105 }; |
| 106 | 106 |
| 107 } // namespace blink | 107 } // namespace blink |
| 108 | 108 |
| 109 #endif // CSSParser_h | 109 #endif // CSSParser_h |
| OLD | NEW |