Chromium Code Reviews| Index: content/renderer/render_view_impl.cc |
| diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc |
| index 4ce57722e1313c044c40621e470d51ee4b99f71c..4178bc215e499251c6e277214b4fcb22c1d85d00 100644 |
| --- a/content/renderer/render_view_impl.cc |
| +++ b/content/renderer/render_view_impl.cc |
| @@ -2550,7 +2550,7 @@ bool RenderViewImpl::IsEditableNode(const WebNode& node) const { |
| bool RenderViewImpl::NodeContainsPoint(const WebNode& node, |
| const gfx::Point& point) const { |
| blink::WebHitTestResult hit_test = |
| - webview()->hitTestResultAt(WebPoint(point.x(), point.y())); |
| + webview()->hitTestResultForTap(WebPoint(point.x(), point.y()), WebSize()); |
|
jamesr
2014/11/08 00:21:08
this is used for autofill and exposed in the conte
hush (inactive)
2014/11/08 01:00:43
This is not a behavior change.
hitTestResultAt doe
|
| return node.containsIncludingShadowDOM(hit_test.node()); |
| } |