| Index: content/browser/renderer_host/input/touch_event_queue.cc
|
| diff --git a/content/browser/renderer_host/input/touch_event_queue.cc b/content/browser/renderer_host/input/touch_event_queue.cc
|
| index 35b1657048ba5635cf1ffbba8c353f8687b94359..11b03b67210e93d808908689d975e0cd3dca6391 100644
|
| --- a/content/browser/renderer_host/input/touch_event_queue.cc
|
| +++ b/content/browser/renderer_host/input/touch_event_queue.cc
|
| @@ -56,7 +56,9 @@ bool HasPointChanged(const WebTouchPoint& point_1,
|
| point_1.radiusX != point_2.radiusX ||
|
| point_1.radiusY != point_2.radiusY ||
|
| point_1.rotationAngle != point_2.rotationAngle ||
|
| - point_1.force != point_2.force) {
|
| + point_1.force != point_2.force ||
|
| + point_1.tiltX != point_2.tiltX ||
|
| + point_1.tiltY != point_2.tiltY) {
|
| return true;
|
| }
|
| return false;
|
|
|