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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 // A boolean pref indicating whether the projection touch HUD is enabled or not. | 747 // A boolean pref indicating whether the projection touch HUD is enabled or not. |
748 const char kTouchHudProjectionEnabled[] = "touch_hud.projection_enabled"; | 748 const char kTouchHudProjectionEnabled[] = "touch_hud.projection_enabled"; |
749 | 749 |
750 // A pref to configure networks. Its value must be a list of | 750 // A pref to configure networks. Its value must be a list of |
751 // NetworkConfigurations according to the OpenNetworkConfiguration | 751 // NetworkConfigurations according to the OpenNetworkConfiguration |
752 // specification. | 752 // specification. |
753 // Currently, this pref is only used to store the policy. The user's | 753 // Currently, this pref is only used to store the policy. The user's |
754 // configuration is still stored in Shill. | 754 // configuration is still stored in Shill. |
755 const char kOpenNetworkConfiguration[] = "onc"; | 755 const char kOpenNetworkConfiguration[] = "onc"; |
756 | 756 |
757 // A boolean pref that tracks whether the user has already given consent for | |
758 // enabling remote attestation for content protection. | |
759 const char kRAConsentGranted[] = "settings.privacy.ra_consent_granted"; | |
760 | |
761 // A boolean pref recording whether user has dismissed the multiprofile | 757 // A boolean pref recording whether user has dismissed the multiprofile |
762 // itroduction dialog show. | 758 // itroduction dialog show. |
763 const char kMultiProfileNeverShowIntro[] = | 759 const char kMultiProfileNeverShowIntro[] = |
764 "settings.multi_profile_never_show_intro"; | 760 "settings.multi_profile_never_show_intro"; |
765 | 761 |
766 // A boolean pref recording whether user has dismissed the multiprofile | 762 // A boolean pref recording whether user has dismissed the multiprofile |
767 // teleport warning dialog show. | 763 // teleport warning dialog show. |
768 const char kMultiProfileWarningShowDismissed[] = | 764 const char kMultiProfileWarningShowDismissed[] = |
769 "settings.multi_profile_warning_show_dismissed"; | 765 "settings.multi_profile_warning_show_dismissed"; |
770 | 766 |
(...skipping 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2276 // (name and a list of clients that registered the whitelist). | 2272 // (name and a list of clients that registered the whitelist). |
2277 const char kRegisteredSupervisedUserWhitelists[] = | 2273 const char kRegisteredSupervisedUserWhitelists[] = |
2278 "supervised_users.whitelists"; | 2274 "supervised_users.whitelists"; |
2279 | 2275 |
2280 #if defined(ENABLE_EXTENSIONS) | 2276 #if defined(ENABLE_EXTENSIONS) |
2281 // Policy that indicates how to handle animated images. | 2277 // Policy that indicates how to handle animated images. |
2282 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2278 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2283 #endif | 2279 #endif |
2284 | 2280 |
2285 } // namespace prefs | 2281 } // namespace prefs |
OLD | NEW |