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 2560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2571 }, | 2571 }, |
2572 | 2572 |
2573 "AllowScreenLock": { | 2573 "AllowScreenLock": { |
2574 "os": ["chromeos"], | 2574 "os": ["chromeos"], |
2575 "test_policy": { "AllowScreenLock": true }, | 2575 "test_policy": { "AllowScreenLock": true }, |
2576 "pref_mappings": [ | 2576 "pref_mappings": [ |
2577 { "pref": "allow_screen_lock"} | 2577 { "pref": "allow_screen_lock"} |
2578 ] | 2578 ] |
2579 }, | 2579 }, |
2580 | 2580 |
| 2581 "PinUnlockMinimumLength": { |
| 2582 "os": ["chromeos"], |
| 2583 "test_policy": { "PinUnlockMinimumLength": 4 }, |
| 2584 "pref_mappings": [ |
| 2585 { "pref": "pin_unlock_minimum_length"} |
| 2586 ] |
| 2587 }, |
| 2588 |
| 2589 "PinUnlockMaximumLength": { |
| 2590 "os": ["chromeos"], |
| 2591 "test_policy": { "PinUnlockMaximumLength": 0 }, |
| 2592 "pref_mappings": [ |
| 2593 { "pref": "pin_unlock_maximum_length"} |
| 2594 ] |
| 2595 }, |
| 2596 |
| 2597 "PinUnlockAllowEasyPins": { |
| 2598 "os": ["chromeos"], |
| 2599 "test_policy": { "PinUnlockAllowEasyPins": false }, |
| 2600 "pref_mappings": [ |
| 2601 { "pref": "pin_unlock_allow_easy_pins"} |
| 2602 ] |
| 2603 }, |
| 2604 |
2581 "ArcCertificatesSyncMode": { | 2605 "ArcCertificatesSyncMode": { |
2582 "os": ["chromeos"], | 2606 "os": ["chromeos"], |
2583 "can_be_recommended": false, | 2607 "can_be_recommended": false, |
2584 "test_policy": { "ArcCertificatesSyncMode": 0 } | 2608 "test_policy": { "ArcCertificatesSyncMode": 0 } |
2585 }, | 2609 }, |
2586 | 2610 |
2587 "ArcBackupRestoreEnabled": { | 2611 "ArcBackupRestoreEnabled": { |
2588 "os": ["chromeos"], | 2612 "os": ["chromeos"], |
2589 "can_be_recommended": false, | 2613 "can_be_recommended": false, |
2590 "test_policy": { "ArcBackupRestoreEnabled": false }, | 2614 "test_policy": { "ArcBackupRestoreEnabled": false }, |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2895 | 2919 |
2896 "AdditionalLaunchParameters": { | 2920 "AdditionalLaunchParameters": { |
2897 }, | 2921 }, |
2898 | 2922 |
2899 "SuppressChromeFrameTurndownPrompt": { | 2923 "SuppressChromeFrameTurndownPrompt": { |
2900 }, | 2924 }, |
2901 | 2925 |
2902 "SkipMetadataCheck": { | 2926 "SkipMetadataCheck": { |
2903 } | 2927 } |
2904 } | 2928 } |
OLD | NEW |