| Index: Source/core/platform/graphics/GraphicsLayer.cpp
|
| diff --git a/Source/core/platform/graphics/GraphicsLayer.cpp b/Source/core/platform/graphics/GraphicsLayer.cpp
|
| index cce5cba0c7ccdfd0712f6353c38b9bb2ecc918c0..f35ee67b9498a600796ff161e27937685bd1420c 100644
|
| --- a/Source/core/platform/graphics/GraphicsLayer.cpp
|
| +++ b/Source/core/platform/graphics/GraphicsLayer.cpp
|
| @@ -1094,7 +1094,7 @@ void GraphicsLayer::setContentsToMedia(WebLayer* layer)
|
| setContentsTo(ContentsLayerForVideo, layer);
|
| }
|
|
|
| -bool GraphicsLayer::addAnimation(const KeyframeValueList& values, const IntSize& boxSize, const CSSAnimationData* animation, const String& animationName, double timeOffset)
|
| +bool GraphicsLayer::addAnimation(const KeyframeValueList& values, const IntSize& boxSize, const CSSAnimationData* animation, const String& animationName, double timeOffset, RenderView* renderView)
|
| {
|
| platformLayer()->setAnimationDelegate(this);
|
|
|
| @@ -1103,7 +1103,7 @@ bool GraphicsLayer::addAnimation(const KeyframeValueList& values, const IntSize&
|
| if (m_animationIdMap.contains(animationName))
|
| animationId = m_animationIdMap.get(animationName);
|
|
|
| - OwnPtr<WebAnimation> toAdd(createWebAnimation(values, animation, animationId, timeOffset, boxSize));
|
| + OwnPtr<WebAnimation> toAdd(createWebAnimation(values, animation, animationId, timeOffset, boxSize, renderView));
|
|
|
| if (toAdd) {
|
| animationId = toAdd->id();
|
|
|