Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "-- Template --": { | 2 "-- Template --": { |
| 3 "intro": "Top-level entries map a policy name to its test parameters, descri bed below.", | 3 "intro": "Top-level entries map a policy name to its test parameters, descri bed below.", |
| 4 | 4 |
| 5 "os": ["List of operating systems that support this policy. Valid values:", "win", "linux", "mac", "chromeos", "Defaults to empty if not specified."], | 5 "os": ["List of operating systems that support this policy. Valid values:", "win", "linux", "mac", "chromeos", "Defaults to empty if not specified."], |
| 6 "official_only": "Whether this policy exists in official builds only. Defaul ts to |false| if not specified.", | 6 "official_only": "Whether this policy exists in official builds only. Defaul ts to |false| if not specified.", |
| 7 "can_be_recommended": "Whether a recommended value may be set for the policy . Defaults to |false| if not specified.", | 7 "can_be_recommended": "Whether a recommended value may be set for the policy . Defaults to |false| if not specified.", |
| 8 "test_policy": "A policy dictionary that should make the preferences affecte d by this policy become policy-controlled. Usually just sets the current policy. Defaults to an empty dictionary if not specified.", | 8 "test_policy": "A policy dictionary that should make the preferences affecte d by this policy become policy-controlled. Usually just sets the current policy. Defaults to an empty dictionary if not specified.", |
| 9 "note": "If the policy affects any preferences, the following array should b e specified with one entry per such preference.", | 9 "note": "If the policy affects any preferences, the following array should b e specified with one entry per such preference.", |
| 10 "pref_mappings": [ | 10 "pref_mappings": [ |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 226 }, | 226 }, |
| 227 | 227 |
| 228 "RemoteAccessHostAllowClientPairing": { | 228 "RemoteAccessHostAllowClientPairing": { |
| 229 "os": [], | 229 "os": [], |
| 230 "test_policy": { "RemoteAccessHostAllowClientPairing": true }, | 230 "test_policy": { "RemoteAccessHostAllowClientPairing": true }, |
| 231 "pref_mappings": [ | 231 "pref_mappings": [ |
| 232 { "pref": "remote_access.host_allow_client_pairing" } | 232 { "pref": "remote_access.host_allow_client_pairing" } |
| 233 ] | 233 ] |
| 234 }, | 234 }, |
| 235 | 235 |
| 236 "RemoteAccessHostAllowGnubbyAuth": { | |
|
Sergey Ulanov
2014/01/25 02:03:33
This is also not necessary.
psj
2014/01/29 09:07:15
Other remoting already here
| |
| 237 "os": [], | |
| 238 "test_policy": { "RemoteAccessHostAllowGnubbyAuth": false }, | |
| 239 "pref_mappings": [ | |
| 240 { "pref": "remote_access.host_allow_gnubby_auth" } | |
| 241 ] | |
| 242 }, | |
| 243 | |
| 236 "PrintingEnabled": { | 244 "PrintingEnabled": { |
| 237 "os": ["win", "linux", "mac", "chromeos"], | 245 "os": ["win", "linux", "mac", "chromeos"], |
| 238 "test_policy": { "PrintingEnabled": false }, | 246 "test_policy": { "PrintingEnabled": false }, |
| 239 "pref_mappings": [ | 247 "pref_mappings": [ |
| 240 { "pref": "printing.enabled" } | 248 { "pref": "printing.enabled" } |
| 241 ] | 249 ] |
| 242 }, | 250 }, |
| 243 | 251 |
| 244 "CloudPrintProxyEnabled": { | 252 "CloudPrintProxyEnabled": { |
| 245 "os": [], | 253 "os": [], |
| (...skipping 1922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2168 | 2176 |
| 2169 "AdditionalLaunchParameters": { | 2177 "AdditionalLaunchParameters": { |
| 2170 }, | 2178 }, |
| 2171 | 2179 |
| 2172 "SuppressChromeFrameTurndownPrompt": { | 2180 "SuppressChromeFrameTurndownPrompt": { |
| 2173 }, | 2181 }, |
| 2174 | 2182 |
| 2175 "SkipMetadataCheck": { | 2183 "SkipMetadataCheck": { |
| 2176 } | 2184 } |
| 2177 } | 2185 } |
| OLD | NEW |