summaryrefslogtreecommitdiff
path: root/chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-09-18 14:34:04 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-10-04 11:15:27 +0000
commite6430e577f105ad8813c92e75c54660c4985026e (patch)
tree88115e5d1fb471fea807111924dcccbeadbf9e4f /chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc
parent53d399fe6415a96ea6986ec0d402a9c07da72453 (diff)
downloadqtwebengine-chromium-e6430e577f105ad8813c92e75c54660c4985026e.tar.gz
BASELINE: Update Chromium to 61.0.3163.99
Change-Id: I8452f34574d88ca2b27af9bd56fc9ff3f16b1367 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc')
-rw-r--r--chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc b/chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc
index ae2131f38b8..329290e7d12 100644
--- a/chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc
+++ b/chromium/content/browser/renderer_host/input/passthrough_touch_event_queue.cc
@@ -28,8 +28,8 @@ namespace {
bool HasPointChanged(const WebTouchPoint& point_1,
const WebTouchPoint& point_2) {
DCHECK_EQ(point_1.id, point_2.id);
- if (point_1.screen_position != point_2.screen_position ||
- point_1.position != point_2.position ||
+ if (point_1.PositionInScreen() != point_2.PositionInScreen() ||
+ point_1.PositionInWidget() != point_2.PositionInWidget() ||
point_1.radius_x != point_2.radius_x ||
point_1.radius_y != point_2.radius_y ||
point_1.rotation_angle != point_2.rotation_angle ||