| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; | 684 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; |
| 685 | 685 |
| 686 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). | 686 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
| 687 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 687 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 688 | 688 |
| 689 // Boolean pref to define the default values for using auto spell correct. | 689 // Boolean pref to define the default values for using auto spell correct. |
| 690 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 690 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
| 691 | 691 |
| 692 // Boolean pref to define the default setting for "block offensive words". | 692 // Boolean pref to define the default setting for "block offensive words". |
| 693 // The old key value is kept to avoid unnecessary migration code. | 693 // The old key value is kept to avoid unnecessary migration code. |
| 694 const char kSpeechInputFilterProfanities[] = | 694 const char kSpeechRecognitionFilterProfanities[] = |
| 695 "browser.speechinput_censor_results"; | 695 "browser.speechinput_censor_results"; |
| 696 | 696 |
| 697 // Boolean pref to determine if the tray notification balloon for speech input | 697 // Boolean pref to determine if the tray notification balloon for speech input |
| 698 // extension API has been already shown once to the user. | 698 // extension API has been already shown once to the user. |
| 699 const char kSpeechInputTrayNotificationShown[] = | 699 const char kSpeechInputTrayNotificationShown[] = |
| 700 "browser.speechinput_tray_notification_shown"; | 700 "browser.speechinput_tray_notification_shown"; |
| 701 | 701 |
| 702 // Boolean controlling whether history saving is disabled. | 702 // Boolean controlling whether history saving is disabled. |
| 703 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 703 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 704 | 704 |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1774 const char kWebIntentsEnabled[] = "webintents.enabled"; | 1774 const char kWebIntentsEnabled[] = "webintents.enabled"; |
| 1775 | 1775 |
| 1776 #if defined(USE_AURA) | 1776 #if defined(USE_AURA) |
| 1777 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; | 1777 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; |
| 1778 #endif | 1778 #endif |
| 1779 | 1779 |
| 1780 // Indicates whether the browser is in managed mode. | 1780 // Indicates whether the browser is in managed mode. |
| 1781 const char kInManagedMode[] = "managed_mode"; | 1781 const char kInManagedMode[] = "managed_mode"; |
| 1782 | 1782 |
| 1783 } // namespace prefs | 1783 } // namespace prefs |
| OLD | NEW |