| 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..f412824484e463c68a0a10f1883a332b138f85c5 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; }
|
|
|
| + HashSet<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;
|
| + HashSet<const QualifiedName*> m_webAnimatedAttributes;
|
| RefPtrWillBeMember<MutableStylePropertySet> m_animatedSMILStyleProperties;
|
| RefPtr<ComputedStyle> m_overrideComputedStyle;
|
| // Used by <animateMotion>
|
|
|