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

Unified Diff: Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp

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/IntegerOptionalIntegerSVGInterpolation.cpp
diff --git a/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp b/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp
index 3b559b0e80443a8216943363cb9bd52898ea3bb4..095159df29656c21111f0be073a246b56b2003c3 100644
--- a/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp
+++ b/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp
@@ -20,10 +20,10 @@ PassRefPtrWillBeRawPtr<SVGInteger> toPositiveInteger(const InterpolableValue* nu
} // namespace
-PassOwnPtrWillBeRawPtr<InterpolableValue> IntegerOptionalIntegerSVGInterpolation::toInterpolableValue(SVGPropertyBase* value)
+PassOwnPtr<InterpolableValue> IntegerOptionalIntegerSVGInterpolation::toInterpolableValue(SVGPropertyBase* value)
{
RefPtrWillBeRawPtr<SVGIntegerOptionalInteger> integerOptionalInteger = toSVGIntegerOptionalInteger(value);
- OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(2);
+ OwnPtr<InterpolableList> result = InterpolableList::create(2);
result->set(0, InterpolableNumber::create(integerOptionalInteger->firstInteger()->value()));
result->set(1, InterpolableNumber::create(integerOptionalInteger->secondInteger()->value()));
return result.release();

Powered by Google App Engine
This is Rietveld 408576698