Chromium Code Reviews| 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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 849 // specification. | 849 // specification. |
| 850 // Currently, this pref is only used to store the policy. The user's | 850 // Currently, this pref is only used to store the policy. The user's |
| 851 // configuration is still stored in Shill. | 851 // configuration is still stored in Shill. |
| 852 const char kOpenNetworkConfiguration[] = "onc"; | 852 const char kOpenNetworkConfiguration[] = "onc"; |
| 853 | 853 |
| 854 // A boolean pref that tracks whether the user has already given consent for | 854 // A boolean pref that tracks whether the user has already given consent for |
| 855 // enabling remote attestation for content protection. | 855 // enabling remote attestation for content protection. |
| 856 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | 856 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; |
| 857 | 857 |
| 858 // A boolean pref recording whether user has dismissed the multiprofile | 858 // A boolean pref recording whether user has dismissed the multiprofile |
| 859 // itroduction dialog show. | |
|
oshima
2014/01/10 19:14:07
The comment looks incorrect.
merkulova
2014/01/14 09:55:58
Could you clarify your doubts?
| |
| 860 const char kMultiProfileNeverShowIntro[] = | |
| 861 "settings.multi_profile_never_show_intro"; | |
| 862 | |
| 863 // A boolean pref recording whether user has dismissed the multiprofile | |
| 859 // notification. | 864 // notification. |
| 860 const char kMultiProfileNotificationDismissed[] = | 865 const char kMultiProfileNotificationDismissed[] = |
| 861 "settings.multi_profile_notification_dismissed"; | 866 "settings.multi_profile_notification_dismissed"; |
| 862 | 867 |
| 863 // A string pref that holds string enum values of how the user should behave | 868 // A string pref that holds string enum values of how the user should behave |
| 864 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 869 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy |
| 865 // for more details of the valid values. | 870 // for more details of the valid values. |
| 866 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 871 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
| 867 | 872 |
| 868 // List of the set of language codes for which high quality local speech | 873 // List of the set of language codes for which high quality local speech |
| (...skipping 1816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2685 | 2690 |
| 2686 // The number of seconds since epoch that the OS password was last changed. | 2691 // The number of seconds since epoch that the OS password was last changed. |
| 2687 const char kOsPasswordLastChanged[] = | 2692 const char kOsPasswordLastChanged[] = |
| 2688 "password_manager.os_password_last_changed"; | 2693 "password_manager.os_password_last_changed"; |
| 2689 #endif | 2694 #endif |
| 2690 | 2695 |
| 2691 // Whether DNS Quick Check is disabled in proxy resolution. | 2696 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2692 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2697 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2693 | 2698 |
| 2694 } // namespace prefs | 2699 } // namespace prefs |
| OLD | NEW |