OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 void setNeedsOverrideComputedStyleUpdate() { m_needsOverrideComputedStyleUpd ate = true; } | 106 void setNeedsOverrideComputedStyleUpdate() { m_needsOverrideComputedStyleUpd ate = true; } |
107 | 107 |
108 private: | 108 private: |
109 HashSet<SVGElementInstance*> m_elementInstances; | 109 HashSet<SVGElementInstance*> m_elementInstances; |
110 SVGCursorElement* m_cursorElement; | 110 SVGCursorElement* m_cursorElement; |
111 CSSCursorImageValue* m_cursorImageValue; | 111 CSSCursorImageValue* m_cursorImageValue; |
112 SVGElement* m_correspondingElement; | 112 SVGElement* m_correspondingElement; |
113 bool m_instancesUpdatesBlocked : 1; | 113 bool m_instancesUpdatesBlocked : 1; |
114 bool m_useOverrideComputedStyle : 1; | 114 bool m_useOverrideComputedStyle : 1; |
115 bool m_needsOverrideComputedStyleUpdate : 1; | 115 bool m_needsOverrideComputedStyleUpdate : 1; |
116 RefPtr<MutableStylePropertySet> m_animatedSMILStyleProperties; | 116 RefPtrWillBePersistent<MutableStylePropertySet> m_animatedSMILStylePropertie s; |
haraken
2014/03/19 10:26:23
I was surprised that you didn't hit COMPILE_ASSERT
wibling-chromium
2014/03/19 10:33:19
I got lucky:)
| |
117 RefPtr<RenderStyle> m_overrideComputedStyle; | 117 RefPtr<RenderStyle> m_overrideComputedStyle; |
118 }; | 118 }; |
119 | 119 |
120 } | 120 } |
121 | 121 |
122 #endif | 122 #endif |
OLD | NEW |