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/logging.h" | 11 #include "base/logging.h" |
12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
13 #include "ui/events/event_constants.h" | 13 #include "ui/events/event_constants.h" |
14 #include "ui/events/gesture_event_details.h" | 14 #include "ui/events/gesture_event_details.h" |
15 #include "ui/events/gestures/gesture_types.h" | 15 #include "ui/events/gestures/gesture_types.h" |
16 #include "ui/events/keycodes/keyboard_codes.h" | 16 #include "ui/events/keycodes/keyboard_codes.h" |
17 #include "ui/events/latency_info.h" | 17 #include "ui/events/latency_info.h" |
18 #include "ui/gfx/point.h" | 18 #include "ui/gfx/geometry/point.h" |
19 #include "ui/gfx/point_conversions.h" | 19 #include "ui/gfx/point_conversions.h" |
20 | 20 |
21 namespace gfx { | 21 namespace gfx { |
22 class Transform; | 22 class Transform; |
23 } | 23 } |
24 | 24 |
25 namespace ui { | 25 namespace ui { |
26 class EventTarget; | 26 class EventTarget; |
27 | 27 |
28 class EVENTS_EXPORT Event { | 28 class EVENTS_EXPORT Event { |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 | 683 |
684 const GestureEventDetails& details() const { return details_; } | 684 const GestureEventDetails& details() const { return details_; } |
685 | 685 |
686 private: | 686 private: |
687 GestureEventDetails details_; | 687 GestureEventDetails details_; |
688 }; | 688 }; |
689 | 689 |
690 } // namespace ui | 690 } // namespace ui |
691 | 691 |
692 #endif // UI_EVENTS_EVENT_H_ | 692 #endif // UI_EVENTS_EVENT_H_ |
OLD | NEW |