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()); |