OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/chromeos/input_method/ibus_keymap.h" | 5 #include "chromeos/ime/ibus_keymap.h" |
6 | 6 |
7 #define XK_MISCELLANY | 7 #define XK_MISCELLANY |
8 #include <X11/keysymdef.h> | 8 #include <X11/keysymdef.h> |
9 #include <X11/XF86keysym.h> | 9 #include <X11/XF86keysym.h> |
10 | 10 |
11 namespace chromeos { | 11 namespace chromeos { |
12 namespace input_method { | 12 namespace input_method { |
13 | 13 |
14 std::string GetIBusKey(int keyval) { | 14 std::string GetIBusKey(int keyval) { |
15 // TODO: Ensure all keys are supported. | 15 // TODO: Ensure all keys are supported. |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 case 0x00f0: return ""; // AC_Reply"; | 268 case 0x00f0: return ""; // AC_Reply"; |
269 case 0x00f1: return ""; // AC_ForwardMsg (MailForward)"; | 269 case 0x00f1: return ""; // AC_ForwardMsg (MailForward)"; |
270 case 0x00f3: return ""; // AL_Documents"; | 270 case 0x00f3: return ""; // AL_Documents"; |
271 | 271 |
272 default: return ""; | 272 default: return ""; |
273 } | 273 } |
274 } | 274 } |
275 | 275 |
276 } // namespace input_method | 276 } // namespace input_method |
277 } // namespace chromeos | 277 } // namespace chromeos |
OLD | NEW |