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

Side by Side Diff: chromeos/ime/ibus_keymap.cc

Issue 12438013: Move InputMethod misc class from c/b/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « chromeos/ime/ibus_keymap.h ('k') | chromeos/ime/input_method_config.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromeos/ime/ibus_keymap.h ('k') | chromeos/ime/input_method_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698