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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
844 // specification. | 844 // specification. |
845 // Currently, this pref is only used to store the policy. The user's | 845 // Currently, this pref is only used to store the policy. The user's |
846 // configuration is still stored in Shill. | 846 // configuration is still stored in Shill. |
847 const char kOpenNetworkConfiguration[] = "onc"; | 847 const char kOpenNetworkConfiguration[] = "onc"; |
848 | 848 |
849 // A boolean pref that tracks whether the user has already given consent for | 849 // A boolean pref that tracks whether the user has already given consent for |
850 // enabling remote attestation for content protection. | 850 // enabling remote attestation for content protection. |
851 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | 851 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; |
852 | 852 |
853 // A boolean pref recording whether user has dismissed the multiprofile | 853 // A boolean pref recording whether user has dismissed the multiprofile |
| 854 // itroduction dialog show. |
| 855 const char kMultiProfileIntroShowDismissed[] = |
| 856 "settings.multi_profile_intro_show_dismissed"; |
| 857 |
| 858 // A boolean pref recording whether user has dismissed the multiprofile |
854 // notification. | 859 // notification. |
855 const char kMultiProfileNotificationDismissed[] = | 860 const char kMultiProfileNotificationDismissed[] = |
856 "settings.multi_profile_notification_dismissed"; | 861 "settings.multi_profile_notification_dismissed"; |
857 | 862 |
858 // A string pref that holds string enum values of how the user should behave | 863 // A string pref that holds string enum values of how the user should behave |
859 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 864 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy |
860 // for more details of the valid values. | 865 // for more details of the valid values. |
861 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 866 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
862 | 867 |
863 // List of the set of language codes for which high quality local speech | 868 // List of the set of language codes for which high quality local speech |
(...skipping 1803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2667 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2672 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
2668 | 2673 |
2669 // The number of seconds since epoch that the OS password was last changed. | 2674 // The number of seconds since epoch that the OS password was last changed. |
2670 const char kOsPasswordLastChanged[] = | 2675 const char kOsPasswordLastChanged[] = |
2671 "password_manager.os_password_last_changed"; | 2676 "password_manager.os_password_last_changed"; |
2672 #endif | 2677 #endif |
2673 | 2678 |
2674 // Whether DNS Quick Check is disabled in proxy resolution. | 2679 // Whether DNS Quick Check is disabled in proxy resolution. |
2675 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2680 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2676 } // namespace prefs | 2681 } // namespace prefs |
OLD | NEW |