| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CSSVariableData_h | 5 #ifndef CSSVariableData_h |
| 6 #define CSSVariableData_h | 6 #define CSSVariableData_h |
| 7 | 7 |
| 8 #include "core/css/StylePropertySet.h" | 8 #include "core/css/StylePropertySet.h" |
| 9 #include "core/css/parser/CSSParserToken.h" | 9 #include "core/css/parser/CSSParserToken.h" |
| 10 #include "core/css/parser/CSSParserTokenRange.h" | 10 #include "core/css/parser/CSSParserTokenRange.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 void consumeAndUpdateTokens(const CSSParserTokenRange&); | 56 void consumeAndUpdateTokens(const CSSParserTokenRange&); |
| 57 template<typename CharacterType> void updateTokens(const CSSParserTokenRange
&); | 57 template<typename CharacterType> void updateTokens(const CSSParserTokenRange
&); |
| 58 | 58 |
| 59 String m_backingString; | 59 String m_backingString; |
| 60 Vector<CSSParserToken> m_tokens; | 60 Vector<CSSParserToken> m_tokens; |
| 61 const bool m_needsVariableResolution; | 61 const bool m_needsVariableResolution; |
| 62 | 62 |
| 63 // Parsed representation for @apply | 63 // Parsed representation for @apply |
| 64 bool m_cachedPropertySet; | 64 bool m_cachedPropertySet; |
| 65 RefPtrWillBePersistent<StylePropertySet> m_propertySet; | 65 Persistent<StylePropertySet> m_propertySet; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace blink | 68 } // namespace blink |
| 69 | 69 |
| 70 #endif // CSSVariableData_h | 70 #endif // CSSVariableData_h |
| OLD | NEW |