1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_EVENTS_GESTURE_DETECTION_GESTURE_EVENT_DATA_H_
6 #define UI_EVENTS_GESTURE_DETECTION_GESTURE_EVENT_DATA_H_
8 #include "base/time/time.h"
9 #include "ui/events/event_constants.h"
10 #include "ui/events/gesture_detection/gesture_detection_export.h"
11 #include "ui/events/gesture_detection/motion_event.h"
12 #include "ui/events/gesture_event_details.h"
16 class GestureEventDataPacket
;
18 struct GESTURE_DETECTION_EXPORT GestureEventData
{
19 GestureEventData(const GestureEventDetails
&,
21 MotionEvent::ToolType primary_tool_type
,
27 size_t touch_point_count
,
28 const gfx::RectF
& bounding_box
,
30 GestureEventData(EventType type
, const GestureEventData
&);
32 EventType
type() const { return details
.type(); }
34 GestureEventDetails details
;
36 MotionEvent::ToolType primary_tool_type
;
45 friend class GestureEventDataPacket
;
47 // Initializes type to GESTURE_TYPE_INVALID.
53 #endif // UI_EVENTS_GESTURE_DETECTION_GESTURE_EVENT_DATA_H_