Index: Source/core/animation/CompositorAnimationsTest.cpp |
diff --git a/Source/core/animation/CompositorAnimationsTest.cpp b/Source/core/animation/CompositorAnimationsTest.cpp |
index 23a98e38de0f1446f1fc4651afd9e875a6848ee1..2bd811994e1969fd1b901cf8795b5821840ff4b4 100644 |
--- a/Source/core/animation/CompositorAnimationsTest.cpp |
+++ b/Source/core/animation/CompositorAnimationsTest.cpp |
@@ -150,7 +150,7 @@ public: |
PassRefPtrWillBeRawPtr<Keyframe> createDefaultKeyframe(CSSPropertyID id, AnimationEffect::CompositeOperation op, double offset = 0) |
{ |
- RefPtr<AnimatableValue> value; |
+ RefPtrWillBeRawPtr<AnimatableValue> value; |
if (id == CSSPropertyWebkitTransform) |
value = AnimatableTransform::create(TransformOperations()); |
else |
@@ -175,7 +175,7 @@ public: |
OwnPtrWillBeRawPtr<KeyframeEffectModel::KeyframeVector> frames = adoptPtrWillBeNoop(new KeyframeEffectModel::KeyframeVector); |
for (size_t i = 0; i < values.size(); i++) { |
double offset = 1.0 / (values.size() - 1) * i; |
- RefPtr<AnimatableDouble> value = AnimatableDouble::create(values[i]); |
+ RefPtrWillBeRawPtr<AnimatableDouble> value = AnimatableDouble::create(values[i]); |
frames->append(createReplaceOpKeyframe(CSSPropertyOpacity, value.get(), offset).get()); |
} |
return frames.release(); |