| Index: Source/core/animation/KeyframeEffectModelTest.cpp
|
| diff --git a/Source/core/animation/KeyframeEffectModelTest.cpp b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| index 4e97e7fb9d6bb68c674b8b7f64afbe0d10adb524..a18cf728154339fc1c8f71eb6c4064c30742eb7d 100644
|
| --- a/Source/core/animation/KeyframeEffectModelTest.cpp
|
| +++ b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| @@ -42,17 +42,17 @@ namespace blink {
|
|
|
| const double duration = 1.0;
|
|
|
| -PassRefPtrWillBeRawPtr<AnimatableValue> unknownAnimatableValue(double n)
|
| +PassRefPtr<AnimatableValue> unknownAnimatableValue(double n)
|
| {
|
| return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::UnitType::Unknown).get());
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<AnimatableValue> pixelAnimatableValue(double n)
|
| +PassRefPtr<AnimatableValue> pixelAnimatableValue(double n)
|
| {
|
| return AnimatableLength::create(Length(n, Fixed), 1);
|
| }
|
|
|
| -AnimatableValueKeyframeVector keyframesAtZeroAndOne(PassRefPtrWillBeRawPtr<AnimatableValue> zeroValue, PassRefPtrWillBeRawPtr<AnimatableValue> oneValue)
|
| +AnimatableValueKeyframeVector keyframesAtZeroAndOne(PassRefPtr<AnimatableValue> zeroValue, PassRefPtr<AnimatableValue> oneValue)
|
| {
|
| AnimatableValueKeyframeVector keyframes(2);
|
| keyframes[0] = AnimatableValueKeyframe::create();
|
| @@ -73,7 +73,7 @@ void expectProperty(CSSPropertyID property, PassRefPtrWillBeRawPtr<Interpolation
|
| void expectDoubleValue(double expectedValue, PassRefPtrWillBeRawPtr<Interpolation> interpolationValue)
|
| {
|
| LegacyStyleInterpolation* interpolation = toLegacyStyleInterpolation(interpolationValue.get());
|
| - RefPtrWillBeRawPtr<AnimatableValue> value = interpolation->currentValue();
|
| + RefPtr<AnimatableValue> value = interpolation->currentValue();
|
|
|
| ASSERT_TRUE(value->isLength() || value->isUnknown());
|
|
|
|
|