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 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
873 // A boolean pref recording whether user has dismissed the multiprofile | 873 // A boolean pref recording whether user has dismissed the multiprofile |
874 // notification. | 874 // notification. |
875 const char kMultiProfileNotificationDismissed[] = | 875 const char kMultiProfileNotificationDismissed[] = |
876 "settings.multi_profile_notification_dismissed"; | 876 "settings.multi_profile_notification_dismissed"; |
877 | 877 |
878 // A string pref that holds string enum values of how the user should behave | 878 // A string pref that holds string enum values of how the user should behave |
879 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 879 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy |
880 // for more details of the valid values. | 880 // for more details of the valid values. |
881 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 881 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
882 | 882 |
883 // List of the set of language codes for which high quality local speech | |
884 // synthesis has been enabled. | |
885 const char kHighQualitySpeechSynthesisLanguages[] = | |
886 "settings.speech_synthesis.high_quality_languages"; | |
887 | |
888 // A boolean preference indicating whether user has seen first-run tutorial | 883 // A boolean preference indicating whether user has seen first-run tutorial |
889 // already. | 884 // already. |
890 const char kFirstRunTutorialShown[] = "settings.first_run_tutorial_shown"; | 885 const char kFirstRunTutorialShown[] = "settings.first_run_tutorial_shown"; |
891 | 886 |
892 // Indicates the amount of time for which a user authenticated via SAML can use | 887 // Indicates the amount of time for which a user authenticated via SAML can use |
893 // offline authentication against a cached password before being forced to go | 888 // offline authentication against a cached password before being forced to go |
894 // through online authentication against GAIA again. The time is expressed in | 889 // through online authentication against GAIA again. The time is expressed in |
895 // seconds. A value of -1 indicates no limit, allowing the user to use offline | 890 // seconds. A value of -1 indicates no limit, allowing the user to use offline |
896 // authentication indefinitely. The limit is in effect only if GAIA redirected | 891 // authentication indefinitely. The limit is in effect only if GAIA redirected |
897 // the user to a SAML IdP during the last online authentication. | 892 // the user to a SAML IdP during the last online authentication. |
(...skipping 1749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2647 | 2642 |
2648 // The number of seconds since epoch that the OS password was last changed. | 2643 // The number of seconds since epoch that the OS password was last changed. |
2649 const char kOsPasswordLastChanged[] = | 2644 const char kOsPasswordLastChanged[] = |
2650 "password_manager.os_password_last_changed"; | 2645 "password_manager.os_password_last_changed"; |
2651 #endif | 2646 #endif |
2652 | 2647 |
2653 // Whether DNS Quick Check is disabled in proxy resolution. | 2648 // Whether DNS Quick Check is disabled in proxy resolution. |
2654 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2649 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2655 | 2650 |
2656 } // namespace prefs | 2651 } // namespace prefs |
OLD | NEW |