| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 // A pref to configure networks. Its value must be a list of | 836 // A pref to configure networks. Its value must be a list of |
| 837 // NetworkConfigurations according to the OpenNetworkConfiguration | 837 // NetworkConfigurations according to the OpenNetworkConfiguration |
| 838 // specification. | 838 // specification. |
| 839 // Currently, this pref is only used to store the policy. The user's | 839 // Currently, this pref is only used to store the policy. The user's |
| 840 // configuration is still stored in Shill. | 840 // configuration is still stored in Shill. |
| 841 const char kOpenNetworkConfiguration[] = "onc"; | 841 const char kOpenNetworkConfiguration[] = "onc"; |
| 842 | 842 |
| 843 // A boolean pref that tracks whether the user has already given consent for | 843 // A boolean pref that tracks whether the user has already given consent for |
| 844 // enabling remote attestation for content protection. | 844 // enabling remote attestation for content protection. |
| 845 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | 845 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; |
| 846 // A DictionaryValue pref that tracks domains for which the user has explicitly | |
| 847 // allowed or denied. | |
| 848 const char kRAConsentDomains[] = "settings.privacy.ra_consent_domains"; | |
| 849 // A boolean pref that tracks whether the user indicated they wish to be asked | |
| 850 // for consent for every site that uses remote attestation. | |
| 851 const char kRAConsentAlways[] = "settings.privacy.ra_consent_always"; | |
| 852 | 846 |
| 853 // A boolean pref recording whether user has dismissed the multiprofile | 847 // A boolean pref recording whether user has dismissed the multiprofile |
| 854 // notification. | 848 // notification. |
| 855 const char kMultiProfileNotificationDismissed[] = | 849 const char kMultiProfileNotificationDismissed[] = |
| 856 "settings.multi_profile_notification_dismissed"; | 850 "settings.multi_profile_notification_dismissed"; |
| 857 | 851 |
| 858 // A string pref that holds string enum values of how the user should behave | 852 // A string pref that holds string enum values of how the user should behave |
| 859 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 853 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy |
| 860 // for more details of the valid values. | 854 // for more details of the valid values. |
| 861 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 855 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
| (...skipping 1722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2584 // A dictionary pref which maps profile names to dictionary values which hold | 2578 // A dictionary pref which maps profile names to dictionary values which hold |
| 2585 // hashes of profile prefs that we track to detect changes that happen outside | 2579 // hashes of profile prefs that we track to detect changes that happen outside |
| 2586 // of Chrome. | 2580 // of Chrome. |
| 2587 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2581 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
| 2588 | 2582 |
| 2589 // Stores a pair of local time and corresponding network time to bootstrap | 2583 // Stores a pair of local time and corresponding network time to bootstrap |
| 2590 // network time tracker when browser starts. | 2584 // network time tracker when browser starts. |
| 2591 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2585 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
| 2592 | 2586 |
| 2593 } // namespace prefs | 2587 } // namespace prefs |
| OLD | NEW |