OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_utils.h" | 5 #include "ui/events/event_utils.h" |
6 | 6 |
7 #include <Cocoa/Cocoa.h> | 7 #include <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "ui/events/cocoa/cocoa_event_utils.h" | 12 #include "ui/events/cocoa/cocoa_event_utils.h" |
13 #include "ui/events/event_utils.h" | 13 #include "ui/events/event_utils.h" |
14 #import "ui/events/keycodes/keyboard_code_conversion_mac.h" | 14 #import "ui/events/keycodes/keyboard_code_conversion_mac.h" |
15 #include "ui/gfx/point.h" | 15 #include "ui/gfx/geometry/point.h" |
16 #include "ui/gfx/vector2d.h" | 16 #include "ui/gfx/geometry/vector2d.h" |
17 | 17 |
18 namespace ui { | 18 namespace ui { |
19 | 19 |
20 void UpdateDeviceList() { | 20 void UpdateDeviceList() { |
21 NOTIMPLEMENTED(); | 21 NOTIMPLEMENTED(); |
22 } | 22 } |
23 | 23 |
24 EventType EventTypeFromNative(const base::NativeEvent& native_event) { | 24 EventType EventTypeFromNative(const base::NativeEvent& native_event) { |
25 NSEventType type = [native_event type]; | 25 NSEventType type = [native_event type]; |
26 switch (type) { | 26 switch (type) { |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 210 |
211 const char* CodeFromNative(const base::NativeEvent& native_event) { | 211 const char* CodeFromNative(const base::NativeEvent& native_event) { |
212 return CodeFromNSEvent(native_event); | 212 return CodeFromNSEvent(native_event); |
213 } | 213 } |
214 | 214 |
215 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { | 215 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { |
216 return native_event.keyCode; | 216 return native_event.keyCode; |
217 } | 217 } |
218 | 218 |
219 } // namespace ui | 219 } // namespace ui |
OLD | NEW |