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

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

Issue 8199010: Fixing misleading name a in speech input setting and related variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fixes. Landing if no problems in the bots. Created 9 years, 2 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') | content/browser/speech/speech_input_manager.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 // Boolean pref to define the default values for using spellchecker. 596 // Boolean pref to define the default values for using spellchecker.
597 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; 597 const char kEnableSpellCheck[] = "browser.enable_spellchecking";
598 598
599 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). 599 // List of names of the enabled labs experiments (see chrome/browser/labs.cc).
600 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; 600 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments";
601 601
602 // Boolean pref to define the default values for using auto spell correct. 602 // Boolean pref to define the default values for using auto spell correct.
603 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; 603 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect";
604 604
605 // Boolean pref to define the default setting for "block offensive words". 605 // Boolean pref to define the default setting for "block offensive words".
606 const char kSpeechInputCensorResults[] = 606 // The old key value is kept to avoid unnecessary migration code.
607 const char kSpeechInputFilterProfanities[] =
607 "browser.speechinput_censor_results"; 608 "browser.speechinput_censor_results";
608 609
609 // Boolean controlling whether history saving is disabled. 610 // Boolean controlling whether history saving is disabled.
610 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; 611 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled";
611 612
612 // Boolean controlling whether printing is enabled. 613 // Boolean controlling whether printing is enabled.
613 const char kPrintingEnabled[] = "printing.enabled"; 614 const char kPrintingEnabled[] = "printing.enabled";
614 615
615 // Enable print preview once for supported platforms. 616 // Enable print preview once for supported platforms.
616 #if defined(GOOGLE_CHROME_BUILD) 617 #if defined(GOOGLE_CHROME_BUILD)
(...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after
1580 // specified. 1581 // specified.
1581 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1582 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1582 1583
1583 // Integers that specify the policy refresh rate for device- and user-policy in 1584 // Integers that specify the policy refresh rate for device- and user-policy in
1584 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1585 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1585 // by the cloud policy subsystem. 1586 // by the cloud policy subsystem.
1586 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1587 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1587 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1588 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1588 1589
1589 } // namespace prefs 1590 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/browser/speech/speech_input_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698