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

Unified Diff: Source/core/animation/PointSVGInterpolation.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/PointSVGInterpolation.h
diff --git a/Source/core/animation/PointSVGInterpolation.h b/Source/core/animation/PointSVGInterpolation.h
index 0fddc78a70bb2fe582c318c6c16bc67f90766be4..7478ce46ea697ca8f289f6fb74c0386d7df98d76 100644
--- a/Source/core/animation/PointSVGInterpolation.h
+++ b/Source/core/animation/PointSVGInterpolation.h
@@ -17,9 +17,9 @@ public:
typedef SVGPointList ListType;
typedef void NonInterpolableType;
- static PassOwnPtrWillBeRawPtr<InterpolableList> toInterpolableValue(SVGPropertyBase* item)
+ static PassOwnPtr<InterpolableList> toInterpolableValue(SVGPropertyBase* item)
{
- OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(2);
+ OwnPtr<InterpolableList> result = InterpolableList::create(2);
result->set(0, InterpolableNumber::create(toSVGPoint(item)->x()));
result->set(1, InterpolableNumber::create(toSVGPoint(item)->y()));
return result.release();

Powered by Google App Engine
This is Rietveld 408576698