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

Side by Side Diff: chrome/common/pref_names.cc

Issue 10907196: Add the ability to filter out extension IMEs from the language settings page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mock input manager Created 8 years, 3 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 | « chrome/common/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
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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 565
566 // A string pref (comma-separated list) set to the preferred language IDs 566 // A string pref (comma-separated list) set to the preferred language IDs
567 // (ex. "en-US,fr,ko"). 567 // (ex. "en-US,fr,ko").
568 const char kLanguagePreferredLanguages[] = 568 const char kLanguagePreferredLanguages[] =
569 "settings.language.preferred_languages"; 569 "settings.language.preferred_languages";
570 570
571 // A string pref (comma-separated list) set to the preloaded (active) input 571 // A string pref (comma-separated list) set to the preloaded (active) input
572 // method IDs (ex. "pinyin,mozc"). 572 // method IDs (ex. "pinyin,mozc").
573 const char kLanguagePreloadEngines[] = "settings.language.preload_engines"; 573 const char kLanguagePreloadEngines[] = "settings.language.preload_engines";
574 574
575 // A List pref (comma-separated list) set to the extension IMEs to filter out.
576 const char kLanguageFilteredExtensionImes[] =
577 "settings.language.filtered_extension_imes";
578
575 // Boolean prefs for ibus-chewing Chinese input method. 579 // Boolean prefs for ibus-chewing Chinese input method.
576 const char kLanguageChewingAutoShiftCur[] = 580 const char kLanguageChewingAutoShiftCur[] =
577 "settings.language.chewing_auto_shift_cur"; 581 "settings.language.chewing_auto_shift_cur";
578 const char kLanguageChewingAddPhraseDirection[] = 582 const char kLanguageChewingAddPhraseDirection[] =
579 "settings.language.chewing_add_phrase_direction"; 583 "settings.language.chewing_add_phrase_direction";
580 const char kLanguageChewingEasySymbolInput[] = 584 const char kLanguageChewingEasySymbolInput[] =
581 "settings.language.chewing_easy_symbol_input"; 585 "settings.language.chewing_easy_symbol_input";
582 const char kLanguageChewingEscCleanAllBuf[] = 586 const char kLanguageChewingEscCleanAllBuf[] =
583 "settings.language.chewing_esc_clean_all_buf"; 587 "settings.language.chewing_esc_clean_all_buf";
584 const char kLanguageChewingForceLowercaseEnglish[] = 588 const char kLanguageChewingForceLowercaseEnglish[] =
(...skipping 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after
2034 2038
2035 // Counts how many more times the 'profile on a network share' warning should be 2039 // Counts how many more times the 'profile on a network share' warning should be
2036 // shown to the user before the next silence period. 2040 // shown to the user before the next silence period.
2037 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2041 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2038 // Tracks the time of the last shown warning. Used to reset 2042 // Tracks the time of the last shown warning. Used to reset
2039 // |network_profile.warnings_left| after a silence period. 2043 // |network_profile.warnings_left| after a silence period.
2040 const char kNetworkProfileLastWarningTime[] = 2044 const char kNetworkProfileLastWarningTime[] =
2041 "network_profile.last_warning_time"; 2045 "network_profile.last_warning_time";
2042 2046
2043 } // namespace prefs 2047 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698