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 "base/basictypes.h" | 8 #include "base/basictypes.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/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "ui/events/event_constants.h" | 15 #include "ui/events/event_constants.h" |
16 #include "ui/events/gesture_event_details.h" | 16 #include "ui/events/gesture_event_details.h" |
17 #include "ui/events/gestures/gesture_types.h" | 17 #include "ui/events/gestures/gesture_types.h" |
18 #include "ui/events/keycodes/keyboard_codes.h" | 18 #include "ui/events/keycodes/keyboard_codes.h" |
19 #include "ui/events/latency_info.h" | 19 #include "ui/events/latency_info.h" |
20 #include "ui/gfx/point.h" | 20 #include "ui/gfx/geometry/point.h" |
21 #include "ui/gfx/point_conversions.h" | 21 #include "ui/gfx/geometry/point_conversions.h" |
22 | 22 |
23 namespace gfx { | 23 namespace gfx { |
24 class Transform; | 24 class Transform; |
25 } | 25 } |
26 | 26 |
27 namespace ui { | 27 namespace ui { |
28 class EventTarget; | 28 class EventTarget; |
29 enum class DomCode; | 29 enum class DomCode; |
30 enum class DomKey; | 30 enum class DomKey; |
31 | 31 |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 | 874 |
875 const GestureEventDetails& details() const { return details_; } | 875 const GestureEventDetails& details() const { return details_; } |
876 | 876 |
877 private: | 877 private: |
878 GestureEventDetails details_; | 878 GestureEventDetails details_; |
879 }; | 879 }; |
880 | 880 |
881 } // namespace ui | 881 } // namespace ui |
882 | 882 |
883 #endif // UI_EVENTS_EVENT_H_ | 883 #endif // UI_EVENTS_EVENT_H_ |
OLD | NEW |