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 2419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2430 "can_be_recommended": false, | 2430 "can_be_recommended": false, |
2431 "test_policy": { "ArcEnabled": false } | 2431 "test_policy": { "ArcEnabled": false } |
2432 }, | 2432 }, |
2433 | 2433 |
2434 "ArcApplicationPolicy": { | 2434 "ArcApplicationPolicy": { |
2435 "os": ["chromeos"], | 2435 "os": ["chromeos"], |
2436 "can_be_recommended": false, | 2436 "can_be_recommended": false, |
2437 "test_policy": { "ArcApplicationPolicy": "" } | 2437 "test_policy": { "ArcApplicationPolicy": "" } |
2438 }, | 2438 }, |
2439 | 2439 |
| 2440 "QuirksClientEnabled": { |
| 2441 "os": ["chromeos"], |
| 2442 "can_be_recommended": false, |
| 2443 "test_policy": { "QuirksClientEnabled": true }, |
| 2444 "pref_mappings": [ |
| 2445 { "pref": "policy.display.quirks_client_enabled" } |
| 2446 ] |
| 2447 }, |
| 2448 |
2440 "----- Chrome OS device policies ---------------------------------------": {}, | 2449 "----- Chrome OS device policies ---------------------------------------": {}, |
2441 | 2450 |
2442 "DevicePolicyRefreshRate": { | 2451 "DevicePolicyRefreshRate": { |
2443 "os": ["chromeos"], | 2452 "os": ["chromeos"], |
2444 "test_policy": { "DevicePolicyRefreshRate": 300000 }, | 2453 "test_policy": { "DevicePolicyRefreshRate": 300000 }, |
2445 "pref_mappings": [ | 2454 "pref_mappings": [ |
2446 { "pref": "policy.device_refresh_rate", | 2455 { "pref": "policy.device_refresh_rate", |
2447 "local_state": true } | 2456 "local_state": true } |
2448 ] | 2457 ] |
2449 }, | 2458 }, |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2675 | 2684 |
2676 "AdditionalLaunchParameters": { | 2685 "AdditionalLaunchParameters": { |
2677 }, | 2686 }, |
2678 | 2687 |
2679 "SuppressChromeFrameTurndownPrompt": { | 2688 "SuppressChromeFrameTurndownPrompt": { |
2680 }, | 2689 }, |
2681 | 2690 |
2682 "SkipMetadataCheck": { | 2691 "SkipMetadataCheck": { |
2683 } | 2692 } |
2684 } | 2693 } |
OLD | NEW |