OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_EVENTS_EVENT_H_ | 5 #ifndef UI_EVENTS_EVENT_H_ |
6 #define UI_EVENTS_EVENT_H_ | 6 #define UI_EVENTS_EVENT_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/event_types.h" | 13 #include "base/event_types.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 #include "ui/events/event_constants.h" | 18 #include "ui/events/event_constants.h" |
19 #include "ui/events/gesture_event_details.h" | 19 #include "ui/events/gesture_event_details.h" |
20 #include "ui/events/gestures/gesture_types.h" | 20 #include "ui/events/gestures/gesture_types.h" |
21 #include "ui/events/keycodes/dom/dom_key.h" | 21 #include "ui/events/keycodes/dom/dom_key.h" |
22 #include "ui/events/keycodes/keyboard_codes.h" | 22 #include "ui/events/keycodes/keyboard_codes.h" |
| 23 #include "ui/events/latency_info.h" |
23 #include "ui/gfx/geometry/point.h" | 24 #include "ui/gfx/geometry/point.h" |
24 #include "ui/gfx/geometry/point_conversions.h" | 25 #include "ui/gfx/geometry/point_conversions.h" |
25 #include "ui/latency_info/latency_info.h" | |
26 | 26 |
27 namespace gfx { | 27 namespace gfx { |
28 class Transform; | 28 class Transform; |
29 } | 29 } |
30 | 30 |
31 namespace IPC { | 31 namespace IPC { |
32 template <class P> struct ParamTraits; | 32 template <class P> struct ParamTraits; |
33 } | 33 } |
34 | 34 |
35 namespace ui { | 35 namespace ui { |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 : LocatedEvent(type, time_stamp, flags) {} | 1062 : LocatedEvent(type, time_stamp, flags) {} |
1063 friend struct IPC::ParamTraits<ui::ScopedEvent>; | 1063 friend struct IPC::ParamTraits<ui::ScopedEvent>; |
1064 friend struct IPC::ParamTraits<ui::GestureEvent>; | 1064 friend struct IPC::ParamTraits<ui::GestureEvent>; |
1065 | 1065 |
1066 GestureEventDetails details_; | 1066 GestureEventDetails details_; |
1067 }; | 1067 }; |
1068 | 1068 |
1069 } // namespace ui | 1069 } // namespace ui |
1070 | 1070 |
1071 #endif // UI_EVENTS_EVENT_H_ | 1071 #endif // UI_EVENTS_EVENT_H_ |
OLD | NEW |