Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1192)

Unified Diff: Source/core/svg/SVGSVGElement.h

Issue 304453002: Prepare SMILTimeContainer for oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698