OLD | NEW |
1 { | 1 { |
2 "-- Template --": { | 2 "-- Template --": { |
3 "intro": "Top-level entries map a policy name to its test parameters, descri
bed below. The name of the top level entry should be of the form <policy name>[.
suffix]. The optional suffix is used for defining multiple test cases for a sing
le policy.", | 3 "intro": "Top-level entries map a policy name to its test parameters, descri
bed below. The name of the top level entry should be of the form <policy name>[.
suffix]. The optional suffix is used for defining multiple test cases for a sing
le policy.", |
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 2225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2236 "os": ["win", "linux", "mac", "chromeos"], | 2236 "os": ["win", "linux", "mac", "chromeos"], |
2237 "test_policy": { "SSLErrorOverrideAllowed": true }, | 2237 "test_policy": { "SSLErrorOverrideAllowed": true }, |
2238 "pref_mappings": [ | 2238 "pref_mappings": [ |
2239 { "pref": "ssl.error_override_allowed" } | 2239 { "pref": "ssl.error_override_allowed" } |
2240 ] | 2240 ] |
2241 }, | 2241 }, |
2242 | 2242 |
2243 "KeyPermissions": { | 2243 "KeyPermissions": { |
2244 }, | 2244 }, |
2245 | 2245 |
| 2246 "HardwareAccelerationModeEnabled": { |
| 2247 "os": ["win", "linux", "mac"], |
| 2248 "test_policy": { "HardwareAccelerationModeEnabled": true }, |
| 2249 "pref_mappings": [ |
| 2250 { "pref": "hardware_acceleration_mode.enabled", |
| 2251 "local_state": true } |
| 2252 ] |
| 2253 }, |
| 2254 |
2246 "----- Chrome OS device policies ---------------------------------------": {}, | 2255 "----- Chrome OS device policies ---------------------------------------": {}, |
2247 | 2256 |
2248 "DevicePolicyRefreshRate": { | 2257 "DevicePolicyRefreshRate": { |
2249 "os": ["chromeos"], | 2258 "os": ["chromeos"], |
2250 "test_policy": { "DevicePolicyRefreshRate": 300000 }, | 2259 "test_policy": { "DevicePolicyRefreshRate": 300000 }, |
2251 "pref_mappings": [ | 2260 "pref_mappings": [ |
2252 { "pref": "policy.device_refresh_rate", | 2261 { "pref": "policy.device_refresh_rate", |
2253 "local_state": true } | 2262 "local_state": true } |
2254 ] | 2263 ] |
2255 }, | 2264 }, |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2469 | 2478 |
2470 "AdditionalLaunchParameters": { | 2479 "AdditionalLaunchParameters": { |
2471 }, | 2480 }, |
2472 | 2481 |
2473 "SuppressChromeFrameTurndownPrompt": { | 2482 "SuppressChromeFrameTurndownPrompt": { |
2474 }, | 2483 }, |
2475 | 2484 |
2476 "SkipMetadataCheck": { | 2485 "SkipMetadataCheck": { |
2477 } | 2486 } |
2478 } | 2487 } |
OLD | NEW |