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

Unified Diff: Source/core/animation/AngleSVGInterpolation.h

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/animation/AngleSVGInterpolation.h
diff --git a/Source/core/animation/AngleSVGInterpolation.h b/Source/core/animation/AngleSVGInterpolation.h
index a4c8f8ca095d3b76e1bf5828913379b469bd9bc4..f55fd05fe5d55f06da7a722b72ad0b8fe8f9c49b 100644
--- a/Source/core/animation/AngleSVGInterpolation.h
+++ b/Source/core/animation/AngleSVGInterpolation.h
@@ -14,9 +14,9 @@ class SVGInteger;
class AngleSVGInterpolation : public SVGInterpolation {
public:
- static PassRefPtrWillBeRawPtr<AngleSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
+ static PassRefPtr<AngleSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
{
- return adoptRefWillBeNoop(new AngleSVGInterpolation(toInterpolableValue(start), toInterpolableValue(end), attribute));
+ return adoptRef(new AngleSVGInterpolation(toInterpolableValue(start), toInterpolableValue(end), attribute));
}
static bool canCreateFrom(SVGPropertyBase* value)
@@ -29,18 +29,13 @@ public:
return fromInterpolableValue(m_cachedValue.get());
}
- DEFINE_INLINE_VIRTUAL_TRACE()
- {
- SVGInterpolation::trace(visitor);
- }
-
private:
- AngleSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
+ AngleSVGInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
: SVGInterpolation(start, end, attribute)
{
}
- static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase* value)
+ static PassOwnPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase* value)
{
return InterpolableNumber::create(toSVGAngle(value)->value());
}
« no previous file with comments | « no previous file | Source/core/animation/AnimationStack.h » ('j') | Source/core/animation/animatable/AnimatableFilterOperations.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698