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

Unified Diff: third_party/WebKit/Source/web/WebPagePopupImpl.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: Rebase. Fix copyrights and years. Created 4 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebPagePopupImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
index 379526bc37522c9740537f4c4adcac61810b09f7..e24b8b785f996f27b1ba6fa34ff666fa9210ccd4 100644
--- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
+++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
@@ -130,16 +130,16 @@ private:
m_popup->m_widgetClient->scheduleAnimation();
}
- void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline* timeline, LocalFrame*) override
+ void attachCompositorAnimationTimeline(CompositorAnimationTimeline* timeline, LocalFrame*) override
{
if (m_popup->m_layerTreeView)
- m_popup->m_layerTreeView->attachCompositorAnimationTimeline(timeline);
+ m_popup->m_layerTreeView->attachCompositorAnimationTimeline(timeline->animationTimeline());
}
- void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline* timeline, LocalFrame*) override
+ void detachCompositorAnimationTimeline(CompositorAnimationTimeline* timeline, LocalFrame*) override
{
if (m_popup->m_layerTreeView)
- m_popup->m_layerTreeView->detachCompositorAnimationTimeline(timeline);
+ m_popup->m_layerTreeView->detachCompositorAnimationTimeline(timeline->animationTimeline());
}
WebScreenInfo screenInfo() const override
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698