| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index 18d6939011cee586b8b011d77289778ce0b4768a..f95eb451e9e2d2c50a507cac89e53f74570805c9 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -1874,6 +1874,12 @@ void WebViewImpl::clearCompositedSelectionBounds()
|
| m_layerTreeView->clearSelection();
|
| }
|
|
|
| +void WebViewImpl::updateCompositedSelectionBounds(const WebSelectionBound& anchor, const WebSelectionBound& focus)
|
| +{
|
| + if (m_layerTreeView)
|
| + m_layerTreeView->registerSelection(anchor, focus);
|
| +}
|
| +
|
| bool WebViewImpl::hasHorizontalScrollbar()
|
| {
|
| return mainFrameImpl()->frameView()->horizontalScrollbar();
|
|
|