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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 // custodian of the supervised user. | 107 // custodian of the supervised user. |
108 const char kSupervisedUserCustodianProfileURL[] = | 108 const char kSupervisedUserCustodianProfileURL[] = |
109 "profile.managed.custodian_profile_url"; | 109 "profile.managed.custodian_profile_url"; |
110 | 110 |
111 // Maps host names to whether the host is manually allowed or blocked. | 111 // Maps host names to whether the host is manually allowed or blocked. |
112 const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts"; | 112 const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts"; |
113 | 113 |
114 // Maps URLs to whether the URL is manually allowed or blocked. | 114 // Maps URLs to whether the URL is manually allowed or blocked. |
115 const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls"; | 115 const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls"; |
116 | 116 |
| 117 // Maps extension ids to the approved version of this extension for a |
| 118 // supervised user. Missing extensions are not approved. |
| 119 const char kSupervisedUserApprovedExtensions[] = |
| 120 "profile.managed.approved_extensions"; |
| 121 |
117 // Stores whether the SafeSites filter is enabled. | 122 // Stores whether the SafeSites filter is enabled. |
118 const char kSupervisedUserSafeSites[] = "profile.managed.safe_sites"; | 123 const char kSupervisedUserSafeSites[] = "profile.managed.safe_sites"; |
119 | 124 |
120 // Stores the email address associated with the google account of the secondary | 125 // Stores the email address associated with the google account of the secondary |
121 // custodian of the supervised user, set when the supervised user is created. | 126 // custodian of the supervised user, set when the supervised user is created. |
122 const char kSupervisedUserSecondCustodianEmail[] = | 127 const char kSupervisedUserSecondCustodianEmail[] = |
123 "profile.managed.second_custodian_email"; | 128 "profile.managed.second_custodian_email"; |
124 | 129 |
125 // Stores the display name associated with the google account of the secondary | 130 // Stores the display name associated with the google account of the secondary |
126 // custodian of the supervised user, updated (if possible) each time the | 131 // custodian of the supervised user, updated (if possible) each time the |
(...skipping 2107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2234 const char kMediaRouterEnableCloudServices[] = | 2239 const char kMediaRouterEnableCloudServices[] = |
2235 "media_router.cloudservices.enabled"; | 2240 "media_router.cloudservices.enabled"; |
2236 #endif // defined(GOOGLE_CHROME_BUILD) | 2241 #endif // defined(GOOGLE_CHROME_BUILD) |
2237 // Whether or not the Media Router first run flow has been acknowledged by the | 2242 // Whether or not the Media Router first run flow has been acknowledged by the |
2238 // user. | 2243 // user. |
2239 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2244 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2240 "media_router.firstrunflow.acknowledged"; | 2245 "media_router.firstrunflow.acknowledged"; |
2241 #endif | 2246 #endif |
2242 | 2247 |
2243 } // namespace prefs | 2248 } // namespace prefs |
OLD | NEW |