| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 } | 209 } |
| 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 bool IsCharFromNative(const base::NativeEvent& native_event) { |
| 220 return false; |
| 221 } |
| 222 |
| 219 } // namespace ui | 223 } // namespace ui |
| OLD | NEW |