| 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 2588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2599 | 2599 |
| 2600 "ArcBackupRestoreEnabled": { | 2600 "ArcBackupRestoreEnabled": { |
| 2601 "os": ["chromeos"], | 2601 "os": ["chromeos"], |
| 2602 "can_be_recommended": false, | 2602 "can_be_recommended": false, |
| 2603 "test_policy": { "ArcBackupRestoreEnabled": false }, | 2603 "test_policy": { "ArcBackupRestoreEnabled": false }, |
| 2604 "pref_mappings": [ | 2604 "pref_mappings": [ |
| 2605 { "pref": "arc.backup_restore.enabled" } | 2605 { "pref": "arc.backup_restore.enabled" } |
| 2606 ] | 2606 ] |
| 2607 }, | 2607 }, |
| 2608 | 2608 |
| 2609 "ReportArcStatus": { |
| 2610 "os": ["chromeos"], |
| 2611 "can_be_recommended": false, |
| 2612 "test_policy": { "ReportArcStatus": false }, |
| 2613 "pref_mappings": [ |
| 2614 { "pref": "arc.status_reporting", |
| 2615 "local_state": true } |
| 2616 ] |
| 2617 }, |
| 2618 |
| 2609 "----- Chrome OS device policies ---------------------------------------": {}, | 2619 "----- Chrome OS device policies ---------------------------------------": {}, |
| 2610 | 2620 |
| 2611 "DevicePolicyRefreshRate": { | 2621 "DevicePolicyRefreshRate": { |
| 2612 "os": ["chromeos"], | 2622 "os": ["chromeos"], |
| 2613 "test_policy": { "DevicePolicyRefreshRate": 300000 }, | 2623 "test_policy": { "DevicePolicyRefreshRate": 300000 }, |
| 2614 "pref_mappings": [ | 2624 "pref_mappings": [ |
| 2615 { "pref": "policy.device_refresh_rate", | 2625 { "pref": "policy.device_refresh_rate", |
| 2616 "local_state": true } | 2626 "local_state": true } |
| 2617 ] | 2627 ] |
| 2618 }, | 2628 }, |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2908 | 2918 |
| 2909 "AdditionalLaunchParameters": { | 2919 "AdditionalLaunchParameters": { |
| 2910 }, | 2920 }, |
| 2911 | 2921 |
| 2912 "SuppressChromeFrameTurndownPrompt": { | 2922 "SuppressChromeFrameTurndownPrompt": { |
| 2913 }, | 2923 }, |
| 2914 | 2924 |
| 2915 "SkipMetadataCheck": { | 2925 "SkipMetadataCheck": { |
| 2916 } | 2926 } |
| 2917 } | 2927 } |
| OLD | NEW |