| Index: Source/core/animation/KeyframeEffectModelTest.cpp
|
| diff --git a/Source/core/animation/KeyframeEffectModelTest.cpp b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| index 1aece27cea7fc78145181ca17be679a1966706ca..bab7b572b48396019f4a96ef18462891383a7799 100644
|
| --- a/Source/core/animation/KeyframeEffectModelTest.cpp
|
| +++ b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| @@ -46,7 +46,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)
|
| @@ -83,7 +83,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);
|
| }
|
|
|