| Index: content/browser/renderer_host/ui_events_helper.cc
|
| diff --git a/content/browser/renderer_host/ui_events_helper.cc b/content/browser/renderer_host/ui_events_helper.cc
|
| index 143e8eab5116d775efd7180c222acd50d6f5fc1f..78a7aa41a4fa064aec58e5f6d9e4c9143968c5be 100644
|
| --- a/content/browser/renderer_host/ui_events_helper.cc
|
| +++ b/content/browser/renderer_host/ui_events_helper.cc
|
| @@ -306,13 +306,6 @@ blink::WebTouchPoint* UpdateWebTouchEventFromUIEvent(
|
|
|
| // Update the location and state of the point.
|
| point->state = TouchPointStateFromEvent(event);
|
| - if (point->state == blink::WebTouchPoint::StateMoved) {
|
| - // It is possible for badly written touch drivers to emit Move events even
|
| - // when the touch location hasn't changed. In such cases, consume the event
|
| - // and pretend nothing happened.
|
| - if (point->position.x == event.x() && point->position.y == event.y())
|
| - return NULL;
|
| - }
|
| point->position.x = event.x();
|
| point->position.y = event.y();
|
|
|
|
|