Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1327)

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ScrollAnimatorCompositorCoordinator for MSVC. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..e70e113f96f9529c16d14981d5faa9d08ea0ad17 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -1053,14 +1053,14 @@ void WebFrameWidgetImpl::setRootGraphicsLayer(GraphicsLayer* layer)
void WebFrameWidgetImpl::attachCompositorAnimationTimeline(WebCompositorAnimationTimeline* compositorTimeline)
{
if (m_layerTreeView)
- m_layerTreeView->attachCompositorAnimationTimeline(compositorTimeline);
+ m_layerTreeView->attachCompositorAnimationTimeline(compositorTimeline->animationTimeline());
}
void WebFrameWidgetImpl::detachCompositorAnimationTimeline(WebCompositorAnimationTimeline* compositorTimeline)
{
if (m_layerTreeView)
- m_layerTreeView->detachCompositorAnimationTimeline(compositorTimeline);
+ m_layerTreeView->detachCompositorAnimationTimeline(compositorTimeline->animationTimeline());
}
void WebFrameWidgetImpl::setVisibilityState(WebPageVisibilityState visibilityState, bool isInitialState)

Powered by Google App Engine
This is Rietveld 408576698