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 2085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2096 }, | 2096 }, |
2097 | 2097 |
2098 "NativeMessagingUserLevelHosts": { | 2098 "NativeMessagingUserLevelHosts": { |
2099 "os": ["win", "linux", "mac"], | 2099 "os": ["win", "linux", "mac"], |
2100 "test_policy": { "NativeMessagingUserLevelHosts": false }, | 2100 "test_policy": { "NativeMessagingUserLevelHosts": false }, |
2101 "pref_mappings": [ | 2101 "pref_mappings": [ |
2102 { "pref": "native_messaging.user_level_hosts" } | 2102 { "pref": "native_messaging.user_level_hosts" } |
2103 ] | 2103 ] |
2104 }, | 2104 }, |
2105 | 2105 |
| 2106 "TouchVirtualKeyboardEnabled": { |
| 2107 "os": ["chromeos"], |
| 2108 "test_policy": { "TouchVirtualKeyboardEnabled": false }, |
| 2109 "pref_mappings": [ |
| 2110 { "pref": "ui.touch_virtual_keyboard_enabled" } |
| 2111 ] |
| 2112 }, |
| 2113 |
2106 "----- Chrome OS device policies ---------------------------------------": {}, | 2114 "----- Chrome OS device policies ---------------------------------------": {}, |
2107 | 2115 |
2108 "DevicePolicyRefreshRate": { | 2116 "DevicePolicyRefreshRate": { |
2109 "os": ["chromeos"], | 2117 "os": ["chromeos"], |
2110 "test_policy": { "DevicePolicyRefreshRate": 300000 }, | 2118 "test_policy": { "DevicePolicyRefreshRate": 300000 }, |
2111 "pref_mappings": [ | 2119 "pref_mappings": [ |
2112 { "pref": "policy.device_refresh_rate", | 2120 { "pref": "policy.device_refresh_rate", |
2113 "local_state": true } | 2121 "local_state": true } |
2114 ] | 2122 ] |
2115 }, | 2123 }, |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2302 | 2310 |
2303 "AdditionalLaunchParameters": { | 2311 "AdditionalLaunchParameters": { |
2304 }, | 2312 }, |
2305 | 2313 |
2306 "SuppressChromeFrameTurndownPrompt": { | 2314 "SuppressChromeFrameTurndownPrompt": { |
2307 }, | 2315 }, |
2308 | 2316 |
2309 "SkipMetadataCheck": { | 2317 "SkipMetadataCheck": { |
2310 } | 2318 } |
2311 } | 2319 } |
OLD | NEW |