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

Unified Diff: Source/core/animation/DoubleStyleInterpolationTest.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/DoubleStyleInterpolationTest.cpp
diff --git a/Source/core/animation/DoubleStyleInterpolationTest.cpp b/Source/core/animation/DoubleStyleInterpolationTest.cpp
index 78662f8dfed8c19e14b08560344af61a6c76f62b..e23842883624fd1089076772b5004fbbd55fbdc6 100644
--- a/Source/core/animation/DoubleStyleInterpolationTest.cpp
+++ b/Source/core/animation/DoubleStyleInterpolationTest.cpp
@@ -16,12 +16,12 @@ namespace blink {
class AnimationDoubleStyleInterpolationTest : public ::testing::Test {
protected:
- static PassOwnPtrWillBeRawPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue& value)
+ static PassOwnPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue& value)
{
return DoubleStyleInterpolation::doubleToInterpolableValue(value);
}
- static PassOwnPtrWillBeRawPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue& value)
+ static PassOwnPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue& value)
{
return DoubleStyleInterpolation::motionRotationToInterpolableValue(value);
}
@@ -99,7 +99,7 @@ TEST_F(AnimationDoubleStyleInterpolationTest, AngleValue)
TEST_F(AnimationDoubleStyleInterpolationTest, Clamping)
{
- RefPtrWillBeRawPtr<Interpolation> interpolableDouble = DoubleStyleInterpolation::create(
+ RefPtr<Interpolation> interpolableDouble = DoubleStyleInterpolation::create(
*CSSPrimitiveValue::create(0, CSSPrimitiveValue::UnitType::Number),
*CSSPrimitiveValue::create(0.6, CSSPrimitiveValue::UnitType::Number),
CSSPropertyLineHeight,

Powered by Google App Engine
This is Rietveld 408576698