| 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" | |
| 24 #include "ui/gfx/geometry/point.h" | 23 #include "ui/gfx/geometry/point.h" |
| 25 #include "ui/gfx/geometry/point_conversions.h" | 24 #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 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 : LocatedEvent(type, time_stamp, flags) {} | 1068 : LocatedEvent(type, time_stamp, flags) {} |
| 1069 friend struct IPC::ParamTraits<ui::ScopedEvent>; | 1069 friend struct IPC::ParamTraits<ui::ScopedEvent>; |
| 1070 friend struct IPC::ParamTraits<ui::GestureEvent>; | 1070 friend struct IPC::ParamTraits<ui::GestureEvent>; |
| 1071 | 1071 |
| 1072 GestureEventDetails details_; | 1072 GestureEventDetails details_; |
| 1073 }; | 1073 }; |
| 1074 | 1074 |
| 1075 } // namespace ui | 1075 } // namespace ui |
| 1076 | 1076 |
| 1077 #endif // UI_EVENTS_EVENT_H_ | 1077 #endif // UI_EVENTS_EVENT_H_ |
| OLD | NEW |