| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>>& elementInstances() {
return m_elementInstances; } | 57 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>>& elementInstances() {
return m_elementInstances; } |
| 58 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>>& elementInstance
s() const { return m_elementInstances; } | 58 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>>& elementInstance
s() const { return m_elementInstances; } |
| 59 | 59 |
| 60 bool instanceUpdatesBlocked() const { return m_instancesUpdatesBlocked; } | 60 bool instanceUpdatesBlocked() const { return m_instancesUpdatesBlocked; } |
| 61 void setInstanceUpdatesBlocked(bool value) { m_instancesUpdatesBlocked = val
ue; } | 61 void setInstanceUpdatesBlocked(bool value) { m_instancesUpdatesBlocked = val
ue; } |
| 62 | 62 |
| 63 SVGCursorElement* cursorElement() const { return m_cursorElement; } | 63 SVGCursorElement* cursorElement() const { return m_cursorElement; } |
| 64 void setCursorElement(SVGCursorElement* cursorElement) { m_cursorElement = c
ursorElement; } | 64 void setCursorElement(SVGCursorElement* cursorElement) { m_cursorElement = c
ursorElement; } |
| 65 | 65 |
| 66 SVGElement* correspondingElement() { return m_correspondingElement.get(); } | 66 SVGElement* correspondingElement() const { return m_correspondingElement.get
(); } |
| 67 void setCorrespondingElement(SVGElement* correspondingElement) { m_correspon
dingElement = correspondingElement; } | 67 void setCorrespondingElement(SVGElement* correspondingElement) { m_correspon
dingElement = correspondingElement; } |
| 68 | 68 |
| 69 CSSCursorImageValue* cursorImageValue() const { return m_cursorImageValue; } | 69 CSSCursorImageValue* cursorImageValue() const { return m_cursorImageValue; } |
| 70 void setCursorImageValue(CSSCursorImageValue* cursorImageValue) { m_cursorIm
ageValue = cursorImageValue; } | 70 void setCursorImageValue(CSSCursorImageValue* cursorImageValue) { m_cursorIm
ageValue = cursorImageValue; } |
| 71 | 71 |
| 72 MutableStylePropertySet* animatedSMILStyleProperties() const { return m_anim
atedSMILStyleProperties.get(); } | 72 MutableStylePropertySet* animatedSMILStyleProperties() const { return m_anim
atedSMILStyleProperties.get(); } |
| 73 MutableStylePropertySet* ensureAnimatedSMILStyleProperties(); | 73 MutableStylePropertySet* ensureAnimatedSMILStyleProperties(); |
| 74 | 74 |
| 75 ComputedStyle* overrideComputedStyle(Element*, const ComputedStyle*); | 75 ComputedStyle* overrideComputedStyle(Element*, const ComputedStyle*); |
| 76 | 76 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 98 bool m_needsOverrideComputedStyleUpdate : 1; | 98 bool m_needsOverrideComputedStyleUpdate : 1; |
| 99 RefPtrWillBeMember<MutableStylePropertySet> m_animatedSMILStyleProperties; | 99 RefPtrWillBeMember<MutableStylePropertySet> m_animatedSMILStyleProperties; |
| 100 RefPtr<ComputedStyle> m_overrideComputedStyle; | 100 RefPtr<ComputedStyle> m_overrideComputedStyle; |
| 101 // Used by <animateMotion> | 101 // Used by <animateMotion> |
| 102 OwnPtr<AffineTransform> m_animateMotionTransform; | 102 OwnPtr<AffineTransform> m_animateMotionTransform; |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 } | 105 } |
| 106 | 106 |
| 107 #endif | 107 #endif |
| OLD | NEW |