| 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 ecb3143a46d74e63eb7d8fa02295624ef27f6b63..ab4c1d6018d63c83d39b511fc5994fb4048658d1 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;
|
|
|