| 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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 // Currently, this pref is only used to store the policy. The user's | 819 // Currently, this pref is only used to store the policy. The user's |
| 820 // configuration is still stored in Shill. | 820 // configuration is still stored in Shill. |
| 821 const char kOpenNetworkConfiguration[] = "onc"; | 821 const char kOpenNetworkConfiguration[] = "onc"; |
| 822 | 822 |
| 823 // A boolean pref that tracks whether the user has already given consent for | 823 // A boolean pref that tracks whether the user has already given consent for |
| 824 // enabling remote attestation for content protection. | 824 // enabling remote attestation for content protection. |
| 825 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | 825 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; |
| 826 // A DictionaryValue pref that tracks domains for which the user has explicitly | 826 // A DictionaryValue pref that tracks domains for which the user has explicitly |
| 827 // allowed or denied. | 827 // allowed or denied. |
| 828 const char kRAConsentDomains[] = "settings.privacy.ra_consent_domains"; | 828 const char kRAConsentDomains[] = "settings.privacy.ra_consent_domains"; |
| 829 // A boolean pref that tracks whether the user indicated they wish to be asked | |
| 830 // for consent for every site that uses remote attestation. | |
| 831 const char kRAConsentAlways[] = "settings.privacy.ra_consent_always"; | |
| 832 | 829 |
| 833 // A boolean pref recording whether user has dismissed the multiprofile | 830 // A boolean pref recording whether user has dismissed the multiprofile |
| 834 // notification. | 831 // notification. |
| 835 const char kMultiProfileNotificationDismissed[] = | 832 const char kMultiProfileNotificationDismissed[] = |
| 836 "settings.multi_profile_notification_dismissed"; | 833 "settings.multi_profile_notification_dismissed"; |
| 837 | 834 |
| 838 // A string pref that holds string enum values of how the user should behave | 835 // A string pref that holds string enum values of how the user should behave |
| 839 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 836 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy |
| 840 // for more details of the valid values. | 837 // for more details of the valid values. |
| 841 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 838 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; |
| (...skipping 1713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2555 // A dictionary pref which maps profile names to dictionary values which hold | 2552 // A dictionary pref which maps profile names to dictionary values which hold |
| 2556 // hashes of profile prefs that we track to detect changes that happen outside | 2553 // hashes of profile prefs that we track to detect changes that happen outside |
| 2557 // of Chrome. | 2554 // of Chrome. |
| 2558 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2555 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
| 2559 | 2556 |
| 2560 // Stores a pair of local time and corresponding network time to bootstrap | 2557 // Stores a pair of local time and corresponding network time to bootstrap |
| 2561 // network time tracker when browser starts. | 2558 // network time tracker when browser starts. |
| 2562 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2559 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
| 2563 | 2560 |
| 2564 } // namespace prefs | 2561 } // namespace prefs |
| OLD | NEW |