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

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: 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
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 557
558 // A string pref (comma-separated list) set to the preferred language IDs 558 // A string pref (comma-separated list) set to the preferred language IDs
559 // (ex. "en-US,fr,ko"). 559 // (ex. "en-US,fr,ko").
560 const char kLanguagePreferredLanguages[] = 560 const char kLanguagePreferredLanguages[] =
561 "settings.language.preferred_languages"; 561 "settings.language.preferred_languages";
562 562
563 // A string pref (comma-separated list) set to the preloaded (active) input 563 // A string pref (comma-separated list) set to the preloaded (active) input
564 // method IDs (ex. "pinyin,mozc"). 564 // method IDs (ex. "pinyin,mozc").
565 const char kLanguagePreloadEngines[] = "settings.language.preload_engines"; 565 const char kLanguagePreloadEngines[] = "settings.language.preload_engines";
566 566
567 // A List pref (comma-separated list) set to the extension IMEs to filter out.
568 const char kLanguageFilteredExtensionImes[] =
569 "settings.language.filtered_extension_imes";
570
567 // Boolean prefs for ibus-chewing Chinese input method. 571 // Boolean prefs for ibus-chewing Chinese input method.
568 const char kLanguageChewingAutoShiftCur[] = 572 const char kLanguageChewingAutoShiftCur[] =
569 "settings.language.chewing_auto_shift_cur"; 573 "settings.language.chewing_auto_shift_cur";
570 const char kLanguageChewingAddPhraseDirection[] = 574 const char kLanguageChewingAddPhraseDirection[] =
571 "settings.language.chewing_add_phrase_direction"; 575 "settings.language.chewing_add_phrase_direction";
572 const char kLanguageChewingEasySymbolInput[] = 576 const char kLanguageChewingEasySymbolInput[] =
573 "settings.language.chewing_easy_symbol_input"; 577 "settings.language.chewing_easy_symbol_input";
574 const char kLanguageChewingEscCleanAllBuf[] = 578 const char kLanguageChewingEscCleanAllBuf[] =
575 "settings.language.chewing_esc_clean_all_buf"; 579 "settings.language.chewing_esc_clean_all_buf";
576 const char kLanguageChewingForceLowercaseEnglish[] = 580 const char kLanguageChewingForceLowercaseEnglish[] =
(...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after
2017 2021
2018 // Counts how many more times the 'profile on a network share' warning should be 2022 // Counts how many more times the 'profile on a network share' warning should be
2019 // shown to the user before the next silence period. 2023 // shown to the user before the next silence period.
2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2024 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2021 // Tracks the time of the last shown warning. Used to reset 2025 // Tracks the time of the last shown warning. Used to reset
2022 // |network_profile.warnings_left| after a silence period. 2026 // |network_profile.warnings_left| after a silence period.
2023 const char kNetworkProfileLastWarningTime[] = 2027 const char kNetworkProfileLastWarningTime[] =
2024 "network_profile.last_warning_time"; 2028 "network_profile.last_warning_time";
2025 2029
2026 } // namespace prefs 2030 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698