Index: Source/core/svg/SVGElementRareData.h |
diff --git a/Source/core/svg/SVGElementRareData.h b/Source/core/svg/SVGElementRareData.h |
index 9a654871fbe994ac059c4685e299aacfab037740..9da9d8a0254848fd0afdc3bef6dcec4c055d4f1f 100644 |
--- a/Source/core/svg/SVGElementRareData.h |
+++ b/Source/core/svg/SVGElementRareData.h |
@@ -77,6 +77,8 @@ public: |
void setUseOverrideComputedStyle(bool value) { m_useOverrideComputedStyle = value; } |
void setNeedsOverrideComputedStyleUpdate() { m_needsOverrideComputedStyleUpdate = true; } |
+ AffineTransform* animateMotionTransform(); |
+ |
void trace(Visitor*); |
void processWeakMembers(Visitor*); |
@@ -95,6 +97,8 @@ private: |
bool m_needsOverrideComputedStyleUpdate : 1; |
RefPtrWillBeMember<MutableStylePropertySet> m_animatedSMILStyleProperties; |
RefPtr<RenderStyle> m_overrideComputedStyle; |
+ // Used by <animateMotion> |
+ OwnPtr<AffineTransform> m_animateMotionTransform; |
}; |
} |