| Index: Source/core/svg/SVGAnimatedTypeAnimator.h
|
| diff --git a/Source/core/svg/SVGAnimatedTypeAnimator.h b/Source/core/svg/SVGAnimatedTypeAnimator.h
|
| index 5f3048c3cf34339a97e7413674bee5410419898a..fd5123b868953ac93151e552b25dc2b680e9648a 100644
|
| --- a/Source/core/svg/SVGAnimatedTypeAnimator.h
|
| +++ b/Source/core/svg/SVGAnimatedTypeAnimator.h
|
| @@ -59,6 +59,9 @@ public:
|
| void setContextElement(SVGElement* contextElement) { m_contextElement = contextElement; }
|
| AnimatedPropertyType type() const { return m_type; }
|
|
|
| + bool isAnimatingSVGDom() const { return m_animatedProperty; }
|
| + bool isAnimatingCSSProperty() const { return !m_animatedProperty; }
|
| +
|
| void trace(Visitor*);
|
|
|
| private:
|
| @@ -68,9 +71,6 @@ private:
|
| PassRefPtr<SVGPropertyBase> createPropertyForAnimation(const String&);
|
| PassRefPtr<SVGPropertyBase> resetAnimation(const WillBeHeapVector<RawPtrWillBeMember<SVGElement> >&);
|
|
|
| - bool isAnimatingSVGDom() const { return m_animatedProperty; }
|
| - bool isAnimatingCSSProperty() const { return !m_animatedProperty; }
|
| -
|
| AnimatedPropertyType m_type;
|
| RawPtrWillBeMember<SVGAnimationElement> m_animationElement;
|
| RawPtrWillBeMember<SVGElement> m_contextElement;
|
|
|