Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
index a2be5873f8a5f343773a77898d6b10e475f85254..033a49e59fb956e16f9f9914cd55df6e48e7975b 100644 |
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
@@ -1050,17 +1050,17 @@ void WebFrameWidgetImpl::setRootGraphicsLayer(GraphicsLayer* layer) |
m_layerTreeView->clearRootLayer(); |
} |
-void WebFrameWidgetImpl::attachCompositorAnimationTimeline(WebCompositorAnimationTimeline* compositorTimeline) |
+void WebFrameWidgetImpl::attachCompositorAnimationTimeline(CompositorAnimationTimeline* compositorTimeline) |
{ |
if (m_layerTreeView) |
- m_layerTreeView->attachCompositorAnimationTimeline(compositorTimeline); |
+ m_layerTreeView->attachCompositorAnimationTimeline(compositorTimeline->animationTimeline()); |
} |
-void WebFrameWidgetImpl::detachCompositorAnimationTimeline(WebCompositorAnimationTimeline* compositorTimeline) |
+void WebFrameWidgetImpl::detachCompositorAnimationTimeline(CompositorAnimationTimeline* compositorTimeline) |
{ |
if (m_layerTreeView) |
- m_layerTreeView->detachCompositorAnimationTimeline(compositorTimeline); |
+ m_layerTreeView->detachCompositorAnimationTimeline(compositorTimeline->animationTimeline()); |
} |
void WebFrameWidgetImpl::setVisibilityState(WebPageVisibilityState visibilityState, bool isInitialState) |