| Index: Source/core/animation/KeyframeEffectModelTest.cpp
|
| diff --git a/Source/core/animation/KeyframeEffectModelTest.cpp b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| index 53cea3d2aa66f6fe6b3ca55237aa96534f89133d..5779e60516f8831a8864b741fcc75a1daa3860aa 100644
|
| --- a/Source/core/animation/KeyframeEffectModelTest.cpp
|
| +++ b/Source/core/animation/KeyframeEffectModelTest.cpp
|
| @@ -42,17 +42,17 @@ using namespace WebCore;
|
|
|
| namespace {
|
|
|
| -PassRefPtr<AnimatableValue> unknownAnimatableValue(double n)
|
| +PassRefPtrWillBeRawPtr<AnimatableValue> unknownAnimatableValue(double n)
|
| {
|
| return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN).get());
|
| }
|
|
|
| -PassRefPtr<AnimatableValue> pixelAnimatableValue(double n)
|
| +PassRefPtrWillBeRawPtr<AnimatableValue> pixelAnimatableValue(double n)
|
| {
|
| return AnimatableLength::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_PX).get());
|
| }
|
|
|
| -KeyframeEffectModel::KeyframeVector keyframesAtZeroAndOne(PassRefPtr<AnimatableValue> zeroValue, PassRefPtr<AnimatableValue> oneValue)
|
| +KeyframeEffectModel::KeyframeVector keyframesAtZeroAndOne(PassRefPtrWillBeRawPtr<AnimatableValue> zeroValue, PassRefPtrWillBeRawPtr<AnimatableValue> oneValue)
|
| {
|
| KeyframeEffectModel::KeyframeVector keyframes(2);
|
| keyframes[0] = Keyframe::create();
|
| @@ -73,7 +73,7 @@ void expectProperty(CSSPropertyID property, PassRefPtr<Interpolation> interpolat
|
| void expectDoubleValue(double expectedValue, PassRefPtr<Interpolation> interpolationValue)
|
| {
|
| LegacyStyleInterpolation* interpolation = toLegacyStyleInterpolation(interpolationValue.get());
|
| - RefPtr<AnimatableValue> value = interpolation->currentValue();
|
| + RefPtrWillBeRawPtr<AnimatableValue> value = interpolation->currentValue();
|
|
|
| ASSERT_TRUE(value->isLength() || value->isUnknown());
|
|
|
|
|