| 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 541a27877473db84456caaa249127ae2ad98fe4a..167d62ee0aefa398b4541f34d129535025869270 100644
|
| --- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| @@ -133,13 +133,13 @@ private:
|
| void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline* 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
|
| {
|
| if (m_popup->m_layerTreeView)
|
| - m_popup->m_layerTreeView->detachCompositorAnimationTimeline(timeline);
|
| + m_popup->m_layerTreeView->detachCompositorAnimationTimeline(timeline->animationTimeline());
|
| }
|
|
|
| WebScreenInfo screenInfo() const override
|
|
|