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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 | 597 |
598 // A string pref (comma-separated list) set to the "previous engine" | 598 // A string pref (comma-separated list) set to the "previous engine" |
599 // hot-key lists. | 599 // hot-key lists. |
600 const char kLanguageHotkeyPreviousEngine[] = | 600 const char kLanguageHotkeyPreviousEngine[] = |
601 "settings.language.hotkey_previous_engine"; | 601 "settings.language.hotkey_previous_engine"; |
602 | 602 |
603 // A string pref (comma-separated list) set to the preferred language IDs | 603 // A string pref (comma-separated list) set to the preferred language IDs |
604 // (ex. "en-US,fr,ko"). | 604 // (ex. "en-US,fr,ko"). |
605 const char kLanguagePreferredLanguages[] = | 605 const char kLanguagePreferredLanguages[] = |
606 "settings.language.preferred_languages"; | 606 "settings.language.preferred_languages"; |
| 607 const char kLanguagePreferredLanguagesLocal[] = |
| 608 "settings.language.preferred_languages_local"; |
607 | 609 |
608 // A string pref (comma-separated list) set to the preloaded (active) input | 610 // A string pref (comma-separated list) set to the preloaded (active) input |
609 // method IDs (ex. "pinyin,mozc"). | 611 // method IDs (ex. "pinyin,mozc"). |
610 const char kLanguagePreloadEngines[] = "settings.language.preload_engines"; | 612 const char kLanguagePreloadEngines[] = "settings.language.preload_engines"; |
| 613 const char kLanguagePreloadEnginesLocal[] = |
| 614 "settings.language.preload_engines_local"; |
611 | 615 |
612 // A List pref (comma-separated list) set to the extension IMEs to be enabled. | 616 // A List pref (comma-separated list) set to the extension IMEs to be enabled. |
613 const char kLanguageEnabledExtensionImes[] = | 617 const char kLanguageEnabledExtensionImes[] = |
614 "settings.language.enabled_extension_imes"; | 618 "settings.language.enabled_extension_imes"; |
| 619 const char kLanguageEnabledExtensionImesLocal[] = |
| 620 "settings.language.enabled_extension_imes_local"; |
615 | 621 |
616 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and | 622 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and |
617 // Control.) Possible values for these prefs are 0-4. See ModifierKey enum in | 623 // Control.) Possible values for these prefs are 0-4. See ModifierKey enum in |
618 // src/chrome/browser/chromeos/input_method/xkeyboard.h | 624 // src/chrome/browser/chromeos/input_method/xkeyboard.h |
619 const char kLanguageRemapSearchKeyTo[] = | 625 const char kLanguageRemapSearchKeyTo[] = |
620 // Note: we no longer use XKB for remapping these keys, but we can't change | 626 // Note: we no longer use XKB for remapping these keys, but we can't change |
621 // the pref names since the names are already synced with the cloud. | 627 // the pref names since the names are already synced with the cloud. |
622 "settings.language.xkb_remap_search_key_to"; | 628 "settings.language.xkb_remap_search_key_to"; |
623 const char kLanguageRemapControlKeyTo[] = | 629 const char kLanguageRemapControlKeyTo[] = |
624 "settings.language.xkb_remap_control_key_to"; | 630 "settings.language.xkb_remap_control_key_to"; |
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2521 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2527 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2522 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2528 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2523 // title or an empty string if the bookmark node was removed. | 2529 // title or an empty string if the bookmark node was removed. |
2524 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2530 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2525 #endif | 2531 #endif |
2526 | 2532 |
2527 // Whether DNS Quick Check is disabled in proxy resolution. | 2533 // Whether DNS Quick Check is disabled in proxy resolution. |
2528 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2534 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2529 | 2535 |
2530 } // namespace prefs | 2536 } // namespace prefs |
OLD | NEW |