| 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 #include "ui/events/event.h" | 5 #include "ui/events/event.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "ui/events/keycodes/dom/dom_key.h" | 26 #include "ui/events/keycodes/dom/dom_key.h" |
| 27 #include "ui/events/keycodes/dom/keycode_converter.h" | 27 #include "ui/events/keycodes/dom/keycode_converter.h" |
| 28 #include "ui/events/keycodes/keyboard_code_conversion.h" | 28 #include "ui/events/keycodes/keyboard_code_conversion.h" |
| 29 #include "ui/gfx/geometry/point3_f.h" | 29 #include "ui/gfx/geometry/point3_f.h" |
| 30 #include "ui/gfx/geometry/point_conversions.h" | 30 #include "ui/gfx/geometry/point_conversions.h" |
| 31 #include "ui/gfx/geometry/safe_integer_conversions.h" | 31 #include "ui/gfx/geometry/safe_integer_conversions.h" |
| 32 #include "ui/gfx/transform.h" | 32 #include "ui/gfx/transform.h" |
| 33 #include "ui/gfx/transform_util.h" | 33 #include "ui/gfx/transform_util.h" |
| 34 | 34 |
| 35 #if defined(USE_X11) | 35 #if defined(USE_X11) |
| 36 #include "ui/events/keycodes/keyboard_code_conversion_x.h" | 36 #include "ui/events/keycodes/keyboard_code_conversion_x.h" // nogncheck |
| 37 #elif defined(USE_OZONE) | 37 #elif defined(USE_OZONE) |
| 38 #include "ui/events/ozone/layout/keyboard_layout_engine.h" // nogncheck | 38 #include "ui/events/ozone/layout/keyboard_layout_engine.h" // nogncheck |
| 39 #include "ui/events/ozone/layout/keyboard_layout_engine_manager.h" // nogncheck | 39 #include "ui/events/ozone/layout/keyboard_layout_engine_manager.h" // nogncheck |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 #if defined(OS_WIN) | 42 #if defined(OS_WIN) |
| 43 #include "ui/events/keycodes/platform_key_map_win.h" | 43 #include "ui/events/keycodes/platform_key_map_win.h" |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 // Support a collection of histograms, perhaps one for each entry in an | 46 // Support a collection of histograms, perhaps one for each entry in an |
| (...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1204 gfx::PointF(x, y), | 1204 gfx::PointF(x, y), |
| 1205 time_stamp, | 1205 time_stamp, |
| 1206 flags | EF_FROM_TOUCH), | 1206 flags | EF_FROM_TOUCH), |
| 1207 details_(details) { | 1207 details_(details) { |
| 1208 } | 1208 } |
| 1209 | 1209 |
| 1210 GestureEvent::~GestureEvent() { | 1210 GestureEvent::~GestureEvent() { |
| 1211 } | 1211 } |
| 1212 | 1212 |
| 1213 } // namespace ui | 1213 } // namespace ui |
| OLD | NEW |