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

Unified Diff: Source/core/svg/SVGAnimatedAngle.cpp

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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
« no previous file with comments | « Source/core/svg/SVGAnimatedAngle.h ('k') | Source/core/svg/SVGAnimatedAngle.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedAngle.cpp
diff --git a/Source/core/svg/SVGAnimatedAngle.cpp b/Source/core/svg/SVGAnimatedAngle.cpp
index dd338ddad944daa12c8896ab58e17d6b0b4e9dfe..22bf6d49fed731d221f62eb3ced18931641ebac4 100644
--- a/Source/core/svg/SVGAnimatedAngle.cpp
+++ b/Source/core/svg/SVGAnimatedAngle.cpp
@@ -47,6 +47,12 @@ SVGAnimatedAngle::~SVGAnimatedAngle()
{
}
+void SVGAnimatedAngle::trace(Visitor* visitor)
+{
+ visitor->trace(m_orientType);
+ SVGAnimatedProperty<SVGAngle>::trace(visitor);
+}
+
void SVGAnimatedAngle::synchronizeAttribute()
{
DEFINE_STATIC_LOCAL(const AtomicString, autoValue, ("auto", AtomicString::ConstructFromLiteral));
@@ -59,7 +65,7 @@ void SVGAnimatedAngle::synchronizeAttribute()
contextElement()->setSynchronizedLazyAttribute(attributeName(), value);
}
-void SVGAnimatedAngle::setAnimatedValue(PassRefPtr<SVGPropertyBase> value)
+void SVGAnimatedAngle::setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase> value)
{
SVGAnimatedProperty<SVGAngle>::setAnimatedValue(value);
m_orientType->setAnimatedValue(currentValue()->orientType());
« no previous file with comments | « Source/core/svg/SVGAnimatedAngle.h ('k') | Source/core/svg/SVGAnimatedAngle.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698