Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(380)

Side by Side Diff: ui/events/cocoa/events_mac.mm

Issue 324903002: Remoes X11 dependency in InputMethodEngine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ui/base/ime/input_method_chromeos.cc ('k') | ui/events/event.h » ('j') | ui/events/event.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698