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 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 876 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
877 | 877 |
878 // List of the set of language codes for which high quality local speech | 878 // List of the set of language codes for which high quality local speech |
879 // synthesis has been enabled. | 879 // synthesis has been enabled. |
880 const char kHighQualitySpeechSynthesisLanguages[] = | 880 const char kHighQualitySpeechSynthesisLanguages[] = |
881 "settings.speech_synthesis.high_quality_languages"; | 881 "settings.speech_synthesis.high_quality_languages"; |
882 | 882 |
883 // A boolean preference indicating whether user has seen first-run tutorial | 883 // A boolean preference indicating whether user has seen first-run tutorial |
884 // already. | 884 // already. |
885 const char kFirstRunTutorialShown[] = "settings.first_run_tutorial_shown"; | 885 const char kFirstRunTutorialShown[] = "settings.first_run_tutorial_shown"; |
| 886 |
| 887 // Indicates the amount of time for which a user authenticated via SAML can use |
| 888 // offline authentication against a cached password before being forced to go |
| 889 // through online authentication against GAIA again. The time is expressed in |
| 890 // seconds. A value of -1 indicates no limit, allowing the user to use offline |
| 891 // authentication indefinitely. The limit is in effect only if GAIA redirected |
| 892 // the user to a SAML IdP during the last online authentication. |
| 893 const char kSAMLOfflineSigninTimeLimit[] = "saml.offline_signin_time_limit"; |
| 894 |
| 895 // A preference to keep track of the last time the user authenticated against |
| 896 // GAIA using SAML. The preference is updated whenever the user authenticates |
| 897 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the |
| 898 // current time. If GAIA performs the authentication itself, the preference is |
| 899 // cleared. The time is expressed as the serialization obtained from |
| 900 // base::Time::ToInternalValue(). |
| 901 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; |
886 #endif // defined(OS_CHROMEOS) | 902 #endif // defined(OS_CHROMEOS) |
887 | 903 |
888 // The disabled messages in IPC logging. | 904 // The disabled messages in IPC logging. |
889 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 905 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
890 | 906 |
891 // A boolean pref set to true if a Home button to open the Home pages should be | 907 // A boolean pref set to true if a Home button to open the Home pages should be |
892 // visible on the toolbar. | 908 // visible on the toolbar. |
893 const char kShowHomeButton[] = "browser.show_home_button"; | 909 const char kShowHomeButton[] = "browser.show_home_button"; |
894 | 910 |
895 // A string value which saves short list of recently user selected encodings | 911 // A string value which saves short list of recently user selected encodings |
(...skipping 1744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2640 | 2656 |
2641 // The number of seconds since epoch that the OS password was last changed. | 2657 // The number of seconds since epoch that the OS password was last changed. |
2642 const char kOsPasswordLastChanged[] = | 2658 const char kOsPasswordLastChanged[] = |
2643 "password_manager.os_password_last_changed"; | 2659 "password_manager.os_password_last_changed"; |
2644 #endif | 2660 #endif |
2645 | 2661 |
2646 // Whether DNS Quick Check is disabled in proxy resolution. | 2662 // Whether DNS Quick Check is disabled in proxy resolution. |
2647 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2663 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2648 | 2664 |
2649 } // namespace prefs | 2665 } // namespace prefs |
OLD | NEW |