| Index: Source/core/animation/AnimationStackTest.cpp
|
| diff --git a/Source/core/animation/AnimationStackTest.cpp b/Source/core/animation/AnimationStackTest.cpp
|
| index 8ef425a175bd6bb726a981bfb7c1707e0dd2740e..a7805b1cc18dd9dc97b0531346de790492471e46 100644
|
| --- a/Source/core/animation/AnimationStackTest.cpp
|
| +++ b/Source/core/animation/AnimationStackTest.cpp
|
| @@ -37,14 +37,14 @@ protected:
|
|
|
| PassRefPtrWillBeRawPtr<AnimationEffect> makeAnimationEffect(CSSPropertyID id, PassRefPtrWillBeRawPtr<AnimatableValue> value)
|
| {
|
| - KeyframeEffectModel::KeyframeVector keyframes(2);
|
| - keyframes[0] = Keyframe::create();
|
| + AnimatableValueKeyframeVector keyframes(2);
|
| + keyframes[0] = AnimatableValueKeyframe::create();
|
| keyframes[0]->setOffset(0.0);
|
| keyframes[0]->setPropertyValue(id, value.get());
|
| - keyframes[1] = Keyframe::create();
|
| + keyframes[1] = AnimatableValueKeyframe::create();
|
| keyframes[1]->setOffset(1.0);
|
| keyframes[1]->setPropertyValue(id, value.get());
|
| - return KeyframeEffectModel::create(keyframes);
|
| + return AnimatableValueKeyframeEffectModel::create(keyframes);
|
| }
|
|
|
| PassRefPtr<InertAnimation> makeInertAnimation(PassRefPtrWillBeRawPtr<AnimationEffect> effect)
|
| @@ -63,7 +63,7 @@ protected:
|
|
|
| AnimatableValue* interpolationValue(Interpolation* interpolation)
|
| {
|
| - return toLegacyStyleInterpolation(interpolation)->currentValue();
|
| + return toLegacyStyleInterpolation(interpolation)->currentValue().get();
|
| }
|
|
|
| RefPtr<Document> document;
|
|
|