| 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 CSSParserImpl_h | 5 #ifndef CSSParserImpl_h |
| 6 #define CSSParserImpl_h | 6 #define CSSParserImpl_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
| 9 #include "core/css/CSSProperty.h" | 9 #include "core/css/CSSProperty.h" |
| 10 #include "core/css/CSSPropertySourceData.h" | 10 #include "core/css/CSSPropertySourceData.h" |
| 11 #include "core/css/StylePropertySet.h" | 11 #include "core/css/StylePropertySet.h" |
| 12 #include "core/css/parser/CSSParserMode.h" | |
| 13 #include "core/css/parser/CSSParserTokenRange.h" | 12 #include "core/css/parser/CSSParserTokenRange.h" |
| 14 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 15 #include "wtf/Vector.h" | 14 #include "wtf/Vector.h" |
| 16 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" |
| 17 #include <memory> | 16 #include <memory> |
| 18 | 17 |
| 19 namespace blink { | 18 namespace blink { |
| 20 | 19 |
| 21 class CSSLazyParsingState; | 20 class CSSLazyParsingState; |
| 21 class CSSParserContext; |
| 22 class CSSParserObserver; | 22 class CSSParserObserver; |
| 23 class CSSParserObserverWrapper; | 23 class CSSParserObserverWrapper; |
| 24 class StyleRule; | 24 class StyleRule; |
| 25 class StyleRuleBase; | 25 class StyleRuleBase; |
| 26 class StyleRuleCharset; | 26 class StyleRuleCharset; |
| 27 class StyleRuleFontFace; | 27 class StyleRuleFontFace; |
| 28 class StyleRuleImport; | 28 class StyleRuleImport; |
| 29 class StyleRuleKeyframe; | 29 class StyleRuleKeyframe; |
| 30 class StyleRuleKeyframes; | 30 class StyleRuleKeyframes; |
| 31 class StyleRuleMedia; | 31 class StyleRuleMedia; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 | 162 |
| 163 // For the inspector | 163 // For the inspector |
| 164 CSSParserObserverWrapper* m_observerWrapper; | 164 CSSParserObserverWrapper* m_observerWrapper; |
| 165 | 165 |
| 166 Member<CSSLazyParsingState> m_lazyState; | 166 Member<CSSLazyParsingState> m_lazyState; |
| 167 }; | 167 }; |
| 168 | 168 |
| 169 } // namespace blink | 169 } // namespace blink |
| 170 | 170 |
| 171 #endif // CSSParserImpl_h | 171 #endif // CSSParserImpl_h |
| OLD | NEW |