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

Side by Side Diff: ui/chromeos/events/pref_names.cc

Issue 2724913002: Move chromeos::EventRewriter to //ui/chromeos/events (Closed)
Patch Set: Fix a typo Created 3 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
« no previous file with comments | « ui/chromeos/events/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/chromeos/events/pref_names.h"
6
7 namespace prefs {
8
9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile
11
12 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and
13 // Control.) Possible values for these prefs are 0-6. See ModifierKey enum in
14 // src/chrome/browser/chromeos/input_method/xkeyboard.h
15 const char kLanguageRemapSearchKeyTo[] =
16 // Note: we no longer use XKB for remapping these keys, but we can't change
17 // the pref names since the names are already synced with the cloud.
18 "settings.language.xkb_remap_search_key_to";
19 const char kLanguageRemapControlKeyTo[] =
20 "settings.language.xkb_remap_control_key_to";
21 const char kLanguageRemapAltKeyTo[] = "settings.language.xkb_remap_alt_key_to";
22 const char kLanguageRemapCapsLockKeyTo[] =
23 "settings.language.remap_caps_lock_key_to";
24 const char kLanguageRemapEscapeKeyTo[] =
25 "settings.language.remap_escape_key_to";
26 const char kLanguageRemapBackspaceKeyTo[] =
27 "settings.language.remap_backspace_key_to";
28 const char kLanguageRemapDiamondKeyTo[] =
29 "settings.language.remap_diamond_key_to";
30
31 } // namespace prefs
OLDNEW
« no previous file with comments | « ui/chromeos/events/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698