| Index: third_party/WebKit/Source/core/page/Page.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/Page.cpp b/third_party/WebKit/Source/core/page/Page.cpp
|
| index 3ec85f1254f91bb4ac9abccee16d1df793bf00e3..9ffca12919b60adb34894938729e63aad675a7cc 100644
|
| --- a/third_party/WebKit/Source/core/page/Page.cpp
|
| +++ b/third_party/WebKit/Source/core/page/Page.cpp
|
| @@ -546,10 +546,16 @@ DEFINE_TRACE(Page)
|
| MemoryPurgeClient::trace(visitor);
|
| }
|
|
|
| -void Page::willCloseLayerTreeView()
|
| +void Page::layerTreeViewInitialized(WebLayerTreeView& layerTreeView)
|
| +{
|
| + if (scrollingCoordinator())
|
| + scrollingCoordinator()->layerTreeViewInitialized(layerTreeView);
|
| +}
|
| +
|
| +void Page::willCloseLayerTreeView(WebLayerTreeView& layerTreeView)
|
| {
|
| if (m_scrollingCoordinator)
|
| - m_scrollingCoordinator->willCloseLayerTreeView();
|
| + m_scrollingCoordinator->willCloseLayerTreeView(layerTreeView);
|
| }
|
|
|
| void Page::willBeDestroyed()
|
|
|