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 2222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2233 }, | 2233 }, |
2234 | 2234 |
2235 "SSLErrorOverrideAllowed": { | 2235 "SSLErrorOverrideAllowed": { |
2236 "os": ["win", "linux", "mac", "chromeos"], | 2236 "os": ["win", "linux", "mac", "chromeos"], |
2237 "test_policy": { "SSLErrorOverrideAllowed": true }, | 2237 "test_policy": { "SSLErrorOverrideAllowed": true }, |
2238 "pref_mappings": [ | 2238 "pref_mappings": [ |
2239 { "pref": "ssl.error_override_allowed" } | 2239 { "pref": "ssl.error_override_allowed" } |
2240 ] | 2240 ] |
2241 }, | 2241 }, |
2242 | 2242 |
2243 "KeyPermissions": { | |
2244 }, | |
bartfab (slow)
2015/06/15 17:28:15
Nit: If you KeyPermissionsPolicyHandler populate a
pneubeck (no reviews)
2015/06/17 08:59:56
but what would it test? surely not the policy appl
| |
2245 | |
2243 "----- Chrome OS device policies ---------------------------------------": {}, | 2246 "----- Chrome OS device policies ---------------------------------------": {}, |
2244 | 2247 |
2245 "DevicePolicyRefreshRate": { | 2248 "DevicePolicyRefreshRate": { |
2246 "os": ["chromeos"], | 2249 "os": ["chromeos"], |
2247 "test_policy": { "DevicePolicyRefreshRate": 300000 }, | 2250 "test_policy": { "DevicePolicyRefreshRate": 300000 }, |
2248 "pref_mappings": [ | 2251 "pref_mappings": [ |
2249 { "pref": "policy.device_refresh_rate", | 2252 { "pref": "policy.device_refresh_rate", |
2250 "local_state": true } | 2253 "local_state": true } |
2251 ] | 2254 ] |
2252 }, | 2255 }, |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2466 | 2469 |
2467 "AdditionalLaunchParameters": { | 2470 "AdditionalLaunchParameters": { |
2468 }, | 2471 }, |
2469 | 2472 |
2470 "SuppressChromeFrameTurndownPrompt": { | 2473 "SuppressChromeFrameTurndownPrompt": { |
2471 }, | 2474 }, |
2472 | 2475 |
2473 "SkipMetadataCheck": { | 2476 "SkipMetadataCheck": { |
2474 } | 2477 } |
2475 } | 2478 } |
OLD | NEW |