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