| Index: content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| diff --git a/content/browser/renderer_host/input/input_router_impl_unittest.cc b/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| index de00b479265e0b283cdd2dbce79dffdccd3256d8..8381919202a723982c21034a09d1e5f498667e00 100644
|
| --- a/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| +++ b/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| @@ -104,7 +104,8 @@ bool TouchEventsAreEquivalent(const ui::TouchEvent& first,
|
| const ui::TouchEvent& second) {
|
| if (first.type() != second.type())
|
| return false;
|
| - if (first.location() != second.location())
|
| + if (gfx::ToFlooredPoint(first.location()) !=
|
| + gfx::ToFlooredPoint(second.location()))
|
| return false;
|
| if (first.touch_id() != second.touch_id())
|
| return false;
|
|
|