Chromium Code Reviews| Index: third_party/WebKit/Source/core/svg/SVGElementRareData.h |
| diff --git a/third_party/WebKit/Source/core/svg/SVGElementRareData.h b/third_party/WebKit/Source/core/svg/SVGElementRareData.h |
| index 8c3a1aceab07d22e1f8e1d7f2256cfc957318614..88240e76d3923c9a1796022f4affd70d1aa666f5 100644 |
| --- a/third_party/WebKit/Source/core/svg/SVGElementRareData.h |
| +++ b/third_party/WebKit/Source/core/svg/SVGElementRareData.h |
| @@ -69,6 +69,8 @@ public: |
| CSSCursorImageValue* cursorImageValue() const { return m_cursorImageValue; } |
| void setCursorImageValue(CSSCursorImageValue* cursorImageValue) { m_cursorImageValue = cursorImageValue; } |
| + WillBeHeapHashSet<const QualifiedName*>& webAnimatedAttributes() { return m_webAnimatedAttributes; } |
| + |
| MutableStylePropertySet* animatedSMILStyleProperties() const { return m_animatedSMILStyleProperties.get(); } |
| MutableStylePropertySet* ensureAnimatedSMILStyleProperties(); |
| @@ -96,6 +98,7 @@ private: |
| bool m_instancesUpdatesBlocked : 1; |
| bool m_useOverrideComputedStyle : 1; |
| bool m_needsOverrideComputedStyleUpdate : 1; |
| + WillBeHeapHashSet<const QualifiedName*> m_webAnimatedAttributes; |
|
fs
2015/11/27 09:34:36
Why is this a HeapHashSet? QualifiedName* is not a
alancutter (OOO until 2018)
2015/11/30 00:43:30
Force of habit, thanks for catching. :)
|
| RefPtrWillBeMember<MutableStylePropertySet> m_animatedSMILStyleProperties; |
| RefPtr<ComputedStyle> m_overrideComputedStyle; |
| // Used by <animateMotion> |