Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Side by Side Diff: content/browser/renderer_host/input/touch_event_queue.cc

Issue 1187273004: Pass MotionEvent tilt angles to Blink on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/renderer_host/input/touch_event_queue.h" 5 #include "content/browser/renderer_host/input/touch_event_queue.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "base/metrics/histogram_macros.h" 8 #include "base/metrics/histogram_macros.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "base/trace_event/trace_event.h" 10 #include "base/trace_event/trace_event.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 // Compare all properties of touch points to determine the state. 50 // Compare all properties of touch points to determine the state.
51 bool HasPointChanged(const WebTouchPoint& point_1, 51 bool HasPointChanged(const WebTouchPoint& point_1,
52 const WebTouchPoint& point_2) { 52 const WebTouchPoint& point_2) {
53 DCHECK_EQ(point_1.id, point_2.id); 53 DCHECK_EQ(point_1.id, point_2.id);
54 if (point_1.screenPosition != point_2.screenPosition || 54 if (point_1.screenPosition != point_2.screenPosition ||
55 point_1.position != point_2.position || 55 point_1.position != point_2.position ||
56 point_1.radiusX != point_2.radiusX || 56 point_1.radiusX != point_2.radiusX ||
57 point_1.radiusY != point_2.radiusY || 57 point_1.radiusY != point_2.radiusY ||
58 point_1.rotationAngle != point_2.rotationAngle || 58 point_1.rotationAngle != point_2.rotationAngle ||
59 point_1.force != point_2.force) { 59 point_1.force != point_2.force ||
60 point_1.tiltX != point_2.tiltX ||
61 point_1.tiltY != point_2.tiltY) {
60 return true; 62 return true;
61 } 63 }
62 return false; 64 return false;
63 } 65 }
64 66
65 } // namespace 67 } // namespace
66 68
67 69
68 // Cancels a touch sequence if a touchstart or touchmove ack response is 70 // Cancels a touch sequence if a touchstart or touchmove ack response is
69 // sufficiently delayed. 71 // sufficiently delayed.
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 if (ack_result == INPUT_EVENT_ACK_STATE_CONSUMED) 869 if (ack_result == INPUT_EVENT_ACK_STATE_CONSUMED)
868 send_touch_events_async_ = false; 870 send_touch_events_async_ = false;
869 has_handler_for_current_sequence_ |= 871 has_handler_for_current_sequence_ |=
870 ack_result != INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS; 872 ack_result != INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS;
871 } else if (WebTouchEventTraits::IsTouchSequenceEnd(event)) { 873 } else if (WebTouchEventTraits::IsTouchSequenceEnd(event)) {
872 has_handler_for_current_sequence_ = false; 874 has_handler_for_current_sequence_ = false;
873 } 875 }
874 } 876 }
875 877
876 } // namespace content 878 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698