Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 497 const char kLanguagePreloadEngines[] = "settings.language.preload_engines"; | 497 const char kLanguagePreloadEngines[] = "settings.language.preload_engines"; |
| 498 const char kLanguagePreloadEnginesSyncable[] = | 498 const char kLanguagePreloadEnginesSyncable[] = |
| 499 "settings.language.preload_engines_syncable"; | 499 "settings.language.preload_engines_syncable"; |
| 500 | 500 |
| 501 // A string pref (comma-separated list) set to the extension IMEs to be enabled. | 501 // A string pref (comma-separated list) set to the extension IMEs to be enabled. |
| 502 const char kLanguageEnabledExtensionImes[] = | 502 const char kLanguageEnabledExtensionImes[] = |
| 503 "settings.language.enabled_extension_imes"; | 503 "settings.language.enabled_extension_imes"; |
| 504 const char kLanguageEnabledExtensionImesSyncable[] = | 504 const char kLanguageEnabledExtensionImesSyncable[] = |
| 505 "settings.language.enabled_extension_imes_syncable"; | 505 "settings.language.enabled_extension_imes_syncable"; |
| 506 | 506 |
| 507 // A boolean pref set to true if the system IME menu is activated. | |
|
stevenjb
2015/12/28 17:36:11
This really isn't a "system" menu since the curren
Azure Wei
2016/01/04 06:30:38
All these 'system' related comments were removed.
| |
| 508 const char kLangugaeActivateImeMenu[] = "settings.language.activate_ime_menu"; | |
| 509 | |
| 507 // A boolean pref to indicate whether we still need to add the globally synced | 510 // A boolean pref to indicate whether we still need to add the globally synced |
| 508 // input methods. False after the initial post-OOBE sync. | 511 // input methods. False after the initial post-OOBE sync. |
| 509 const char kLanguageShouldMergeInputMethods[] = | 512 const char kLanguageShouldMergeInputMethods[] = |
| 510 "settings.language.merge_input_methods"; | 513 "settings.language.merge_input_methods"; |
| 511 | 514 |
| 512 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and | 515 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and |
| 513 // Control.) Possible values for these prefs are 0-4. See ModifierKey enum in | 516 // Control.) Possible values for these prefs are 0-4. See ModifierKey enum in |
| 514 // src/chrome/browser/chromeos/input_method/xkeyboard.h | 517 // src/chrome/browser/chromeos/input_method/xkeyboard.h |
| 515 const char kLanguageRemapSearchKeyTo[] = | 518 const char kLanguageRemapSearchKeyTo[] = |
| 516 // Note: we no longer use XKB for remapping these keys, but we can't change | 519 // Note: we no longer use XKB for remapping these keys, but we can't change |
| (...skipping 1651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2168 const char kAllowDinosaurEasterEgg[] = | 2171 const char kAllowDinosaurEasterEgg[] = |
| 2169 "allow_dinosaur_easter_egg"; | 2172 "allow_dinosaur_easter_egg"; |
| 2170 | 2173 |
| 2171 #if defined(OS_ANDROID) | 2174 #if defined(OS_ANDROID) |
| 2172 // Whether the update menu item was clicked. Used to facilitate logging whether | 2175 // Whether the update menu item was clicked. Used to facilitate logging whether |
| 2173 // Chrome was updated after the menu item is clicked. | 2176 // Chrome was updated after the menu item is clicked. |
| 2174 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; | 2177 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; |
| 2175 #endif | 2178 #endif |
| 2176 | 2179 |
| 2177 } // namespace prefs | 2180 } // namespace prefs |
| OLD | NEW |