| Index: Source/core/animation/KeyframeEffectModelTest.cpp
|
| diff --git a/Source/core/animation/KeyframeEffectModelTest.cpp b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| index 6c6ca41801ea3df5411ec6044045b0c1edc1b16e..5e7612a28f78fe5be9270e04450b191409cd085d 100644
|
| --- a/Source/core/animation/KeyframeEffectModelTest.cpp
|
| +++ b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| @@ -44,7 +44,7 @@ const double duration = 1.0;
|
|
|
| PassRefPtrWillBeRawPtr<AnimatableValue> unknownAnimatableValue(double n)
|
| {
|
| - return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN).get());
|
| + return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN));
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<AnimatableValue> pixelAnimatableValue(double n)
|
| @@ -81,7 +81,7 @@ void expectDoubleValue(double expectedValue, PassRefPtrWillBeRawPtr<Interpolatio
|
| if (value->isLength())
|
| actualValue = toAnimatableLength(value.get())->length(1, ValueRangeAll).value();
|
| else
|
| - actualValue = toCSSPrimitiveValue(toAnimatableUnknown(value.get())->toCSSValue().get())->getDoubleValue();
|
| + actualValue = toCSSPrimitiveValue(toAnimatableUnknown(value.get())->toCSSValue()).getDoubleValue();
|
|
|
| EXPECT_FLOAT_EQ(static_cast<float>(expectedValue), actualValue);
|
| }
|
|
|