| 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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 // the user to a SAML IdP during the last online authentication. | 885 // the user to a SAML IdP during the last online authentication. |
| 886 const char kSAMLOfflineSigninTimeLimit[] = "saml.offline_signin_time_limit"; | 886 const char kSAMLOfflineSigninTimeLimit[] = "saml.offline_signin_time_limit"; |
| 887 | 887 |
| 888 // A preference to keep track of the last time the user authenticated against | 888 // A preference to keep track of the last time the user authenticated against |
| 889 // GAIA using SAML. The preference is updated whenever the user authenticates | 889 // GAIA using SAML. The preference is updated whenever the user authenticates |
| 890 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the | 890 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the |
| 891 // current time. If GAIA performs the authentication itself, the preference is | 891 // current time. If GAIA performs the authentication itself, the preference is |
| 892 // cleared. The time is expressed as the serialization obtained from | 892 // cleared. The time is expressed as the serialization obtained from |
| 893 // base::Time::ToInternalValue(). | 893 // base::Time::ToInternalValue(). |
| 894 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; | 894 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; |
| 895 |
| 896 // Setting used to determine if the machine is in a 'derelict' state. This is |
| 897 // determined by the time a machine spends on OOBE without any activity. |
| 898 const char kDerelictMachine[] = "settings.is_machine_derelict"; |
| 895 #endif // defined(OS_CHROMEOS) | 899 #endif // defined(OS_CHROMEOS) |
| 896 | 900 |
| 897 // The disabled messages in IPC logging. | 901 // The disabled messages in IPC logging. |
| 898 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 902 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
| 899 | 903 |
| 900 // A boolean pref set to true if a Home button to open the Home pages should be | 904 // A boolean pref set to true if a Home button to open the Home pages should be |
| 901 // visible on the toolbar. | 905 // visible on the toolbar. |
| 902 const char kShowHomeButton[] = "browser.show_home_button"; | 906 const char kShowHomeButton[] = "browser.show_home_button"; |
| 903 | 907 |
| 904 // A string value which saves short list of recently user selected encodings | 908 // A string value which saves short list of recently user selected encodings |
| (...skipping 1737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2642 | 2646 |
| 2643 // The number of seconds since epoch that the OS password was last changed. | 2647 // The number of seconds since epoch that the OS password was last changed. |
| 2644 const char kOsPasswordLastChanged[] = | 2648 const char kOsPasswordLastChanged[] = |
| 2645 "password_manager.os_password_last_changed"; | 2649 "password_manager.os_password_last_changed"; |
| 2646 #endif | 2650 #endif |
| 2647 | 2651 |
| 2648 // Whether DNS Quick Check is disabled in proxy resolution. | 2652 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2649 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2653 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2650 | 2654 |
| 2651 } // namespace prefs | 2655 } // namespace prefs |
| OLD | NEW |