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 ec17ec65d842783c91de39cb9ed280eb642cfb29..7208b76c36323aee83b5146f94d17728d63441b5 100644 |
--- a/content/browser/renderer_host/ui_events_helper.cc |
+++ b/content/browser/renderer_host/ui_events_helper.cc |
@@ -310,13 +310,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(); |