Index: Source/core/animation/ElementAnimation.h |
diff --git a/Source/core/animation/ElementAnimation.h b/Source/core/animation/ElementAnimation.h |
index 52a099eb61eef231df5d0a7127373b58b4329965..44123df9be2d8a9f7f1fd7a1e7bb2e74798162bf 100644 |
--- a/Source/core/animation/ElementAnimation.h |
+++ b/Source/core/animation/ElementAnimation.h |
@@ -78,7 +78,7 @@ private: |
static AnimationPlayer* animateInternal(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing) |
{ |
if (RuntimeEnabledFeatures::webAnimationsElementAnimateEnabled()) { |
- RefPtr<Animation> animation = Animation::create(&element, effect, timing); |
+ RefPtrWillBeRawPtr<Animation> animation = Animation::create(&element, effect, timing); |
return element.document().timeline().play(animation.get()); |
} |
return 0; |