| Index: Source/core/svg/SVGElement.h
|
| diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h
|
| index 8f056a21a733cacd9bef4c8a0339ec3c967842b2..9e50e39274dfad72430f2a3469fc5adb2270b7bd 100644
|
| --- a/Source/core/svg/SVGElement.h
|
| +++ b/Source/core/svg/SVGElement.h
|
| @@ -184,25 +184,6 @@ protected:
|
| void reportAttributeParsingError(SVGParsingError, const QualifiedName&, const AtomicString&);
|
| bool hasFocusEventListeners() const;
|
|
|
| - class CleanUpAnimatedPropertiesCaller {
|
| - public:
|
| - CleanUpAnimatedPropertiesCaller()
|
| - : m_owner(0)
|
| - {
|
| - }
|
| -
|
| - ~CleanUpAnimatedPropertiesCaller()
|
| - {
|
| - ASSERT(m_owner);
|
| - m_owner->cleanupAnimatedProperties();
|
| - }
|
| -
|
| - void setOwner(SVGElement* owner) { m_owner = owner; }
|
| -
|
| - private:
|
| - SVGElement* m_owner;
|
| - };
|
| -
|
| private:
|
| friend class SVGElementInstance;
|
|
|
| @@ -231,7 +212,6 @@ private:
|
| #if !ASSERT_DISABLED
|
| bool m_inRelativeLengthClientsInvalidation;
|
| #endif
|
| - unsigned m_animatedPropertiesDestructed : 1;
|
| unsigned m_isContextElement : 1;
|
| unsigned m_hasSVGRareData : 1;
|
|
|
|
|