| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |