Index: Source/core/svg/SVGSVGElement.h |
diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h |
index b7dff7a3b9909d6a05c84fbad9108d4f585396dd..d93aea88161b3b10f679aaf383a622c7805a86a8 100644 |
--- a/Source/core/svg/SVGSVGElement.h |
+++ b/Source/core/svg/SVGSVGElement.h |
@@ -114,6 +114,8 @@ public: |
SVGAnimatedLength* width() const { return m_width.get(); } |
SVGAnimatedLength* height() const { return m_height.get(); } |
+ virtual void trace(Visitor*) OVERRIDE; |
+ |
private: |
explicit SVGSVGElement(Document&); |
virtual ~SVGSVGElement(); |
@@ -154,7 +156,7 @@ private: |
virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const OVERRIDE; |
bool m_useCurrentView; |
- RefPtr<SMILTimeContainer> m_timeContainer; |
+ RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; |
RefPtr<SVGPoint> m_translation; |
RefPtr<SVGViewSpec> m_viewSpec; |