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 1950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1961 ] | 1961 ] |
1962 }, | 1962 }, |
1963 | 1963 |
1964 "WebRtcUdpPortRange": { | 1964 "WebRtcUdpPortRange": { |
1965 "os": ["win", "linux", "mac", "chromeos", "android"], | 1965 "os": ["win", "linux", "mac", "chromeos", "android"], |
1966 "test_policy": { "WebRtcUdpPortRange": "10000-11999" }, | 1966 "test_policy": { "WebRtcUdpPortRange": "10000-11999" }, |
1967 "pref_mappings": [ | 1967 "pref_mappings": [ |
1968 { "pref": "webrtc.udp_port_range" } | 1968 { "pref": "webrtc.udp_port_range" } |
1969 ] | 1969 ] |
1970 }, | 1970 }, |
| 1971 |
| 1972 "EnabledComponentUpdates": { |
| 1973 "os": ["win", "linux", "mac", "chromeos"], |
| 1974 "test_policy": { "EnabledComponentUpdates": true }, |
| 1975 "pref_mappings": [ |
| 1976 { "pref": "component_updates.enabled_component_updates", |
| 1977 "local_state": true |
| 1978 } |
| 1979 ] |
| 1980 }, |
1971 | 1981 |
1972 "----- Chrome OS policies ------------------------------------------------": {
}, | 1982 "----- Chrome OS policies ------------------------------------------------": {
}, |
1973 | 1983 |
1974 "ChromeOsLockOnIdleSuspend": { | 1984 "ChromeOsLockOnIdleSuspend": { |
1975 "os": ["chromeos"], | 1985 "os": ["chromeos"], |
1976 "can_be_recommended": true, | 1986 "can_be_recommended": true, |
1977 "test_policy": { "ChromeOsLockOnIdleSuspend": true }, | 1987 "test_policy": { "ChromeOsLockOnIdleSuspend": true }, |
1978 "pref_mappings": [ | 1988 "pref_mappings": [ |
1979 { "pref": "settings.enable_screen_lock", | 1989 { "pref": "settings.enable_screen_lock", |
1980 "indicator_tests": [ | 1990 "indicator_tests": [ |
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2861 | 2871 |
2862 "AdditionalLaunchParameters": { | 2872 "AdditionalLaunchParameters": { |
2863 }, | 2873 }, |
2864 | 2874 |
2865 "SuppressChromeFrameTurndownPrompt": { | 2875 "SuppressChromeFrameTurndownPrompt": { |
2866 }, | 2876 }, |
2867 | 2877 |
2868 "SkipMetadataCheck": { | 2878 "SkipMetadataCheck": { |
2869 } | 2879 } |
2870 } | 2880 } |
OLD | NEW |