| 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 f457c23b7988b342cada4aa4be3216dc301b4cd1..c1e1d2dbb284d31f8cc52e55f5cbf6065f0c6b63 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
|
|
|