OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 27 matching lines...) Expand all Loading... | |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class CSSAnimationUpdate; | 41 class CSSAnimationUpdate; |
42 class FontDescription; | 42 class FontDescription; |
43 | 43 |
44 class StyleResolverState { | 44 class StyleResolverState { |
45 STACK_ALLOCATED(); | 45 STACK_ALLOCATED(); |
46 WTF_MAKE_NONCOPYABLE(StyleResolverState); | 46 WTF_MAKE_NONCOPYABLE(StyleResolverState); |
47 public: | 47 public: |
48 StyleResolverState(Document&, Element*, RenderStyle* parentStyle = 0); | 48 StyleResolverState(Document&, const ElementResolveContext&, PassRefPtr<Rende rStyle>, PassRefPtr<RenderStyle> parentStyle); |
49 StyleResolverState(Document&, Element*, PassRefPtr<RenderStyle>, RenderStyle * parentStyle = nullptr); | |
rune
2014/11/13 14:28:43
How about making the parentStyle parameter mandato
| |
49 ~StyleResolverState(); | 50 ~StyleResolverState(); |
50 | 51 |
51 // In FontFaceSet and CanvasRenderingContext2D, we don't have an element to grab the document from. | 52 // In FontFaceSet and CanvasRenderingContext2D, we don't have an element to grab the document from. |
52 // This is why we have to store the document separately. | 53 // This is why we have to store the document separately. |
53 Document& document() const { return *m_document; } | 54 Document& document() const { return *m_document; } |
54 // These are all just pass-through methods to ElementResolveContext. | 55 // These are all just pass-through methods to ElementResolveContext. |
55 Element* element() const { return m_elementContext.element(); } | 56 Element* element() const { return m_elementContext.element(); } |
56 const ContainerNode* parentNode() const { return m_elementContext.parentNode (); } | 57 const ContainerNode* parentNode() const { return m_elementContext.parentNode (); } |
57 const RenderStyle* rootElementStyle() const { return m_elementContext.rootEl ementStyle(); } | 58 const RenderStyle* rootElementStyle() const { return m_elementContext.rootEl ementStyle(); } |
58 EInsideLink elementLinkState() const { return m_elementContext.elementLinkSt ate(); } | 59 EInsideLink elementLinkState() const { return m_elementContext.elementLinkSt ate(); } |
59 bool distributedToInsertionPoint() const { return m_elementContext.distribut edToInsertionPoint(); } | 60 bool distributedToInsertionPoint() const { return m_elementContext.distribut edToInsertionPoint(); } |
60 | 61 |
61 const ElementResolveContext& elementContext() const { return m_elementContex t; } | 62 const ElementResolveContext& elementContext() const { return m_elementContex t; } |
62 | 63 |
63 void setStyle(PassRefPtr<RenderStyle> style) | |
64 { | |
65 m_style = style; | |
66 m_cssToLengthConversionData.setStyle(m_style.get()); | |
67 m_fontBuilder.setStyle(m_style.get()); | |
68 } | |
69 const RenderStyle* style() const { return m_style.get(); } | 64 const RenderStyle* style() const { return m_style.get(); } |
70 RenderStyle* style() { return m_style.get(); } | 65 RenderStyle* style() { return m_style.get(); } |
71 PassRefPtr<RenderStyle> takeStyle() { return m_style.release(); } | 66 PassRefPtr<RenderStyle> takeStyle() { return m_style.release(); } |
72 | 67 |
73 const CSSToLengthConversionData& cssToLengthConversionData() const { return m_cssToLengthConversionData; } | 68 const CSSToLengthConversionData& cssToLengthConversionData() const { return m_cssToLengthConversionData; } |
74 | 69 |
75 void setAnimationUpdate(PassOwnPtrWillBeRawPtr<CSSAnimationUpdate>); | 70 void setAnimationUpdate(PassOwnPtrWillBeRawPtr<CSSAnimationUpdate>); |
76 const CSSAnimationUpdate* animationUpdate() { return m_animationUpdate.get() ; } | 71 const CSSAnimationUpdate* animationUpdate() { return m_animationUpdate.get() ; } |
77 PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> takeAnimationUpdate(); | 72 PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> takeAnimationUpdate(); |
78 | 73 |
79 void setParentStyle(PassRefPtr<RenderStyle> parentStyle) { m_parentStyle = p arentStyle; } | |
80 const RenderStyle* parentStyle() const { return m_parentStyle.get(); } | 74 const RenderStyle* parentStyle() const { return m_parentStyle.get(); } |
81 RenderStyle* parentStyle() { return m_parentStyle.get(); } | 75 RenderStyle* parentStyle() { return m_parentStyle.get(); } |
82 | 76 |
83 // FIXME: These are effectively side-channel "out parameters" for the variou s | 77 // FIXME: These are effectively side-channel "out parameters" for the variou s |
84 // map functions. When we map from CSS to style objects we use this state ob ject | 78 // map functions. When we map from CSS to style objects we use this state ob ject |
85 // to track various meta-data about that mapping (e.g. if it's cache-able). | 79 // to track various meta-data about that mapping (e.g. if it's cache-able). |
86 // We need to move this data off of StyleResolverState and closer to the | 80 // We need to move this data off of StyleResolverState and closer to the |
87 // objects it applies to. Possibly separating (immutable) inputs from (mutab le) outputs. | 81 // objects it applies to. Possibly separating (immutable) inputs from (mutab le) outputs. |
88 void setApplyPropertyToRegularStyle(bool isApply) { m_applyPropertyToRegular Style = isApply; } | 82 void setApplyPropertyToRegularStyle(bool isApply) { m_applyPropertyToRegular Style = isApply; } |
89 void setApplyPropertyToVisitedLinkStyle(bool isApply) { m_applyPropertyToVis itedLinkStyle = isApply; } | 83 void setApplyPropertyToVisitedLinkStyle(bool isApply) { m_applyPropertyToVis itedLinkStyle = isApply; } |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
157 ElementStyleResources m_elementStyleResources; | 151 ElementStyleResources m_elementStyleResources; |
158 // CSSToStyleMap is a pure-logic class and only contains | 152 // CSSToStyleMap is a pure-logic class and only contains |
159 // a back-pointer to this object. | 153 // a back-pointer to this object. |
160 CSSToStyleMap m_styleMap; | 154 CSSToStyleMap m_styleMap; |
161 Vector<AtomicString> m_contentAttrValues; | 155 Vector<AtomicString> m_contentAttrValues; |
162 }; | 156 }; |
163 | 157 |
164 } // namespace blink | 158 } // namespace blink |
165 | 159 |
166 #endif // StyleResolverState_h | 160 #endif // StyleResolverState_h |
OLD | NEW |