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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 | 846 |
847 // A boolean pref recording whether user has dismissed the multiprofile | 847 // A boolean pref recording whether user has dismissed the multiprofile |
848 // notification. | 848 // notification. |
849 const char kMultiProfileNotificationDismissed[] = | 849 const char kMultiProfileNotificationDismissed[] = |
850 "settings.multi_profile_notification_dismissed"; | 850 "settings.multi_profile_notification_dismissed"; |
851 | 851 |
852 // A string pref that holds string enum values of how the user should behave | 852 // A string pref that holds string enum values of how the user should behave |
853 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 853 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy |
854 // for more details of the valid values. | 854 // for more details of the valid values. |
855 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 855 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
| 856 |
| 857 // List of the set of language codes for which high quality local speech |
| 858 // synthesis has been enabled. |
| 859 const char kHighQualitySpeechSynthesisLanguages[] = |
| 860 "settings.speech_synthesis.high_quality_languages"; |
856 #endif // defined(OS_CHROMEOS) | 861 #endif // defined(OS_CHROMEOS) |
857 | 862 |
858 // The disabled messages in IPC logging. | 863 // The disabled messages in IPC logging. |
859 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 864 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
860 | 865 |
861 // A boolean pref set to true if a Home button to open the Home pages should be | 866 // A boolean pref set to true if a Home button to open the Home pages should be |
862 // visible on the toolbar. | 867 // visible on the toolbar. |
863 const char kShowHomeButton[] = "browser.show_home_button"; | 868 const char kShowHomeButton[] = "browser.show_home_button"; |
864 | 869 |
865 // A string value which saves short list of recently user selected encodings | 870 // A string value which saves short list of recently user selected encodings |
(...skipping 1763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2629 #if defined(OS_WIN) | 2634 #if defined(OS_WIN) |
2630 // Whether the password was blank, only valid if OS password was last changed | 2635 // Whether the password was blank, only valid if OS password was last changed |
2631 // on or before the value contained in kOsPasswordLastChanged. | 2636 // on or before the value contained in kOsPasswordLastChanged. |
2632 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2637 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
2633 | 2638 |
2634 // The number of seconds since epoch that the OS password was last changed. | 2639 // The number of seconds since epoch that the OS password was last changed. |
2635 const char kOsPasswordLastChanged[] = | 2640 const char kOsPasswordLastChanged[] = |
2636 "password_manager.os_password_last_changed"; | 2641 "password_manager.os_password_last_changed"; |
2637 #endif | 2642 #endif |
2638 } // namespace prefs | 2643 } // namespace prefs |
OLD | NEW |