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" |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 } | 218 } |
219 | 219 |
220 KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { | 220 KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { |
221 return KeyboardCodeFromNSEvent(native_event); | 221 return KeyboardCodeFromNSEvent(native_event); |
222 } | 222 } |
223 | 223 |
224 const char* CodeFromNative(const base::NativeEvent& native_event) { | 224 const char* CodeFromNative(const base::NativeEvent& native_event) { |
225 return CodeFromNSEvent(native_event); | 225 return CodeFromNSEvent(native_event); |
226 } | 226 } |
227 | 227 |
| 228 uint32 PlatformCodeFromNative(const base::NativeEvent& native_event) { |
| 229 return native_event.keyCode; |
| 230 } |
| 231 |
228 } // namespace ui | 232 } // namespace ui |
OLD | NEW |