Index: third_party/WebKit/Source/web/WebViewImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp |
index 3eefe298696687b36544eed2852c4e7256813907..7863f54bbd67a0a52a4e865891d9fa6760f31996 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp |
@@ -2515,7 +2515,7 @@ void WebViewImpl::willCloseLayerTreeView() { |
} |
if (m_layerTreeView) |
- page()->willCloseLayerTreeView(*m_layerTreeView); |
+ page()->willCloseLayerTreeView(*m_layerTreeView, nullptr); |
setRootLayer(nullptr); |
m_animationHost = nullptr; |
@@ -3956,7 +3956,7 @@ void WebViewImpl::initializeLayerTreeView() { |
m_page->settings().setAcceleratedCompositingEnabled(m_layerTreeView); |
if (m_layerTreeView) |
- m_page->layerTreeViewInitialized(*m_layerTreeView); |
+ m_page->layerTreeViewInitialized(*m_layerTreeView, nullptr); |
// FIXME: only unittests, click to play, Android printing, and printing (for |
// headers and footers) make this assert necessary. We should make them not |