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

Side by Side Diff: chrome/common/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 | « chrome/common/pref_names.h ('k') | remoting/client/normalizing_input_filter_cros.cc » ('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 (c) 2012 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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/features.h" 9 #include "chrome/common/features.h"
10 #include "chrome/common/pref_font_webkit_names.h" 10 #include "chrome/common/pref_font_webkit_names.h"
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 "settings.language.enabled_extension_imes_syncable"; 558 "settings.language.enabled_extension_imes_syncable";
559 559
560 // A boolean pref set to true if the IME menu is activated. 560 // A boolean pref set to true if the IME menu is activated.
561 const char kLanguageImeMenuActivated[] = "settings.language.ime_menu_activated"; 561 const char kLanguageImeMenuActivated[] = "settings.language.ime_menu_activated";
562 562
563 // A boolean pref to indicate whether we still need to add the globally synced 563 // A boolean pref to indicate whether we still need to add the globally synced
564 // input methods. False after the initial post-OOBE sync. 564 // input methods. False after the initial post-OOBE sync.
565 const char kLanguageShouldMergeInputMethods[] = 565 const char kLanguageShouldMergeInputMethods[] =
566 "settings.language.merge_input_methods"; 566 "settings.language.merge_input_methods";
567 567
568 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and
569 // Control.) Possible values for these prefs are 0-6. See ModifierKey enum in
570 // src/chrome/browser/chromeos/input_method/xkeyboard.h
571 const char kLanguageRemapSearchKeyTo[] =
572 // Note: we no longer use XKB for remapping these keys, but we can't change
573 // the pref names since the names are already synced with the cloud.
574 "settings.language.xkb_remap_search_key_to";
575 const char kLanguageRemapControlKeyTo[] =
576 "settings.language.xkb_remap_control_key_to";
577 const char kLanguageRemapAltKeyTo[] =
578 "settings.language.xkb_remap_alt_key_to";
579 const char kLanguageRemapCapsLockKeyTo[] =
580 "settings.language.remap_caps_lock_key_to";
581 const char kLanguageRemapEscapeKeyTo[] =
582 "settings.language.remap_escape_key_to";
583 const char kLanguageRemapBackspaceKeyTo[] =
584 "settings.language.remap_backspace_key_to";
585 const char kLanguageRemapDiamondKeyTo[] =
586 "settings.language.remap_diamond_key_to";
587
588 // A boolean pref that causes top-row keys to be interpreted as function keys 568 // A boolean pref that causes top-row keys to be interpreted as function keys
589 // instead of as media keys. 569 // instead of as media keys.
590 const char kLanguageSendFunctionKeys[] = 570 const char kLanguageSendFunctionKeys[] =
591 "settings.language.send_function_keys"; 571 "settings.language.send_function_keys";
592 572
593 // A boolean pref which determines whether key repeat is enabled. 573 // A boolean pref which determines whether key repeat is enabled.
594 const char kLanguageXkbAutoRepeatEnabled[] = 574 const char kLanguageXkbAutoRepeatEnabled[] =
595 "settings.language.xkb_auto_repeat_enabled_r2"; 575 "settings.language.xkb_auto_repeat_enabled_r2";
596 // A integer pref which determines key repeat delay (in ms). 576 // A integer pref which determines key repeat delay (in ms).
597 const char kLanguageXkbAutoRepeatDelay[] = 577 const char kLanguageXkbAutoRepeatDelay[] =
(...skipping 1922 matching lines...) Expand 10 before | Expand all | Expand 10 after
2520 // settings. 2500 // settings.
2521 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = 2501 const char kSettingsResetPromptLastTriggeredForStartupUrls[] =
2522 "settings_reset_prompt.last_triggered_for_startup_urls"; 2502 "settings_reset_prompt.last_triggered_for_startup_urls";
2523 2503
2524 // Timestamp of the last time the settings reset prompt was shown during the 2504 // Timestamp of the last time the settings reset prompt was shown during the
2525 // current prompt wave asking the user if they want to restore their homepage. 2505 // current prompt wave asking the user if they want to restore their homepage.
2526 const char kSettingsResetPromptLastTriggeredForHomepage[] = 2506 const char kSettingsResetPromptLastTriggeredForHomepage[] =
2527 "settings_reset_prompt.last_triggered_for_homepage"; 2507 "settings_reset_prompt.last_triggered_for_homepage";
2528 2508
2529 } // namespace prefs 2509 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | remoting/client/normalizing_input_filter_cros.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698