Index: Source/web/WebViewImpl.cpp |
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp |
index 9d314fb083d8c013b0979c995412fab2c297abae..0288eb5d5c694b2e4548459a33f8172000415fc9 100644 |
--- a/Source/web/WebViewImpl.cpp |
+++ b/Source/web/WebViewImpl.cpp |
@@ -1992,10 +1992,10 @@ void WebViewImpl::clearCompositedSelectionBounds() |
m_layerTreeView->clearSelection(); |
} |
-void WebViewImpl::updateCompositedSelectionBounds(const WebSelectionBound& anchor, const WebSelectionBound& focus) |
+void WebViewImpl::updateCompositedSelectionBounds(const WebSelectionBounds& bounds) |
{ |
if (m_layerTreeView) |
- m_layerTreeView->registerSelection(anchor, focus); |
+ m_layerTreeView->registerSelection(bounds); |
} |
bool WebViewImpl::hasHorizontalScrollbar() |