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 LayoutEditor_h | 5 #ifndef LayoutEditor_h |
6 #define LayoutEditor_h | 6 #define LayoutEditor_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/CSSPrimitiveValue.h" | 10 #include "core/css/CSSPrimitiveValue.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 RefPtrWillBeMember<Element> m_element; | 55 RefPtrWillBeMember<Element> m_element; |
56 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; | 56 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; |
57 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 57 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
58 CSSPropertyID m_changingProperty; | 58 CSSPropertyID m_changingProperty; |
59 float m_propertyInitialValue; | 59 float m_propertyInitialValue; |
60 float m_factor; | 60 float m_factor; |
61 CSSPrimitiveValue::UnitType m_valueUnitType; | 61 CSSPrimitiveValue::UnitType m_valueUnitType; |
62 bool m_isDirty; | 62 bool m_isDirty; |
63 | 63 |
64 RefPtrWillBeRawPtr<CSSRuleList> m_matchedRules; | 64 RefPtrWillBeMember<CSSRuleList> m_matchedRules; |
65 // When m_currentRuleIndex == m_matchedRules.length(), current style is inli
ne style. | 65 // When m_currentRuleIndex == m_matchedRules.length(), current style is inli
ne style. |
66 unsigned m_currentRuleIndex; | 66 unsigned m_currentRuleIndex; |
67 }; | 67 }; |
68 | 68 |
69 } // namespace blink | 69 } // namespace blink |
70 | 70 |
71 | 71 |
72 #endif // !defined(LayoutEditor_h) | 72 #endif // !defined(LayoutEditor_h) |
OLD | NEW |