| 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 d7fc65b2a31a6b06f5894da02e35ebf1753e880d..1cf413fdb1838363d146da66ab4cb59366e76055 100644
|
| --- a/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| +++ b/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| @@ -115,7 +115,7 @@ bool TouchEventsAreEquivalent(const ui::TouchEvent& first,
|
| return false;
|
| if (first.location() != second.location())
|
| return false;
|
| - if (first.touch_id() != second.touch_id())
|
| + if (first.pointer_details().id != second.pointer_details().id)
|
| return false;
|
| if (second.time_stamp() != first.time_stamp())
|
| return false;
|
|
|