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/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 // custodian of the supervised user. | 105 // custodian of the supervised user. |
106 const char kSupervisedUserCustodianProfileURL[] = | 106 const char kSupervisedUserCustodianProfileURL[] = |
107 "profile.managed.custodian_profile_url"; | 107 "profile.managed.custodian_profile_url"; |
108 | 108 |
109 // Maps host names to whether the host is manually allowed or blocked. | 109 // Maps host names to whether the host is manually allowed or blocked. |
110 const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts"; | 110 const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts"; |
111 | 111 |
112 // Maps URLs to whether the URL is manually allowed or blocked. | 112 // Maps URLs to whether the URL is manually allowed or blocked. |
113 const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls"; | 113 const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls"; |
114 | 114 |
| 115 // Maps extension ids to the approved version of this extension for a |
| 116 // supervised user. Missing extensions are not approved. |
| 117 const char kSupervisedUserApprovedExtensions[] = |
| 118 "profile.managed.approved_extensions"; |
| 119 |
115 // Stores whether the SafeSites filter is enabled. | 120 // Stores whether the SafeSites filter is enabled. |
116 const char kSupervisedUserSafeSites[] = "profile.managed.safe_sites"; | 121 const char kSupervisedUserSafeSites[] = "profile.managed.safe_sites"; |
117 | 122 |
118 // Stores the email address associated with the google account of the secondary | 123 // Stores the email address associated with the google account of the secondary |
119 // custodian of the supervised user, set when the supervised user is created. | 124 // custodian of the supervised user, set when the supervised user is created. |
120 const char kSupervisedUserSecondCustodianEmail[] = | 125 const char kSupervisedUserSecondCustodianEmail[] = |
121 "profile.managed.second_custodian_email"; | 126 "profile.managed.second_custodian_email"; |
122 | 127 |
123 // Stores the display name associated with the google account of the secondary | 128 // Stores the display name associated with the google account of the secondary |
124 // custodian of the supervised user, updated (if possible) each time the | 129 // custodian of the supervised user, updated (if possible) each time the |
(...skipping 2045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2170 const char kMediaRouterEnableCloudServices[] = | 2175 const char kMediaRouterEnableCloudServices[] = |
2171 "media_router.cloudservices.enabled"; | 2176 "media_router.cloudservices.enabled"; |
2172 #endif // defined(GOOGLE_CHROME_BUILD) | 2177 #endif // defined(GOOGLE_CHROME_BUILD) |
2173 // Whether or not the Media Router first run flow has been acknowledged by the | 2178 // Whether or not the Media Router first run flow has been acknowledged by the |
2174 // user. | 2179 // user. |
2175 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2180 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2176 "media_router.firstrunflow.acknowledged"; | 2181 "media_router.firstrunflow.acknowledged"; |
2177 #endif | 2182 #endif |
2178 | 2183 |
2179 } // namespace prefs | 2184 } // namespace prefs |
OLD | NEW |