OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef WebGestureEvent_h | 5 #ifndef WebGestureEvent_h |
6 #define WebGestureEvent_h | 6 #define WebGestureEvent_h |
7 | 7 |
8 #include "WebFloatSize.h" | 8 #include "WebFloatSize.h" |
9 #include "WebGestureDevice.h" | 9 #include "WebGestureDevice.h" |
10 #include "WebInputEvent.h" | 10 #include "WebInputEvent.h" |
(...skipping 19 matching lines...) Expand all Loading... | |
30 kMomentumPhase, // Momentum phase. | 30 kMomentumPhase, // Momentum phase. |
31 }; | 31 }; |
32 | 32 |
33 // TODO(mustaq): Make these coordinates private & fractional, as in | 33 // TODO(mustaq): Make these coordinates private & fractional, as in |
34 // WebMouseEvent.h . | 34 // WebMouseEvent.h . |
35 int x; | 35 int x; |
36 int y; | 36 int y; |
37 int global_x; | 37 int global_x; |
38 int global_y; | 38 int global_y; |
39 WebGestureDevice source_device; | 39 WebGestureDevice source_device; |
40 bool is_source_touch_event_set_non_blocking; | |
pfeldman
2017/06/09 18:38:08
Are you relying upon all the call sites to initial
chongz
2017/06/09 18:58:58
Done. Thanks for catching! Yes it would be safer t
| |
40 | 41 |
41 // If the WebGestureEvent has sourceDevice=WebGestureDeviceTouchscreen, this | 42 // If the WebGestureEvent has sourceDevice=WebGestureDeviceTouchscreen, this |
42 // field contains the unique identifier for the touch event that released | 43 // field contains the unique identifier for the touch event that released |
43 // this event at TouchDispositionGestureFilter. If the WebGestureEvents was | 44 // this event at TouchDispositionGestureFilter. If the WebGestureEvents was |
44 // not released through a touch event (e.g. timer-released gesture events or | 45 // not released through a touch event (e.g. timer-released gesture events or |
45 // gesture events with sourceDevice!=WebGestureDeviceTouchscreen), the field | 46 // gesture events with sourceDevice!=WebGestureDeviceTouchscreen), the field |
46 // contains 0. See crbug.com/618738. | 47 // contains 0. See crbug.com/618738. |
47 uint32_t unique_touch_event_id; | 48 uint32_t unique_touch_event_id; |
48 | 49 |
49 // This field exists to allow BrowserPlugin to mark GestureScroll events as | 50 // This field exists to allow BrowserPlugin to mark GestureScroll events as |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
240 return false; | 241 return false; |
241 } | 242 } |
242 } | 243 } |
243 }; | 244 }; |
244 | 245 |
245 #pragma pack(pop) | 246 #pragma pack(pop) |
246 | 247 |
247 } // namespace blink | 248 } // namespace blink |
248 | 249 |
249 #endif // WebGestureEvent_h | 250 #endif // WebGestureEvent_h |
OLD | NEW |