| 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 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 "test_policy": { "ImportSavedPasswords": false }, | 1460 "test_policy": { "ImportSavedPasswords": false }, |
| 1461 "pref_mappings": [ | 1461 "pref_mappings": [ |
| 1462 { "pref": "import_saved_passwords", | 1462 { "pref": "import_saved_passwords", |
| 1463 "indicator_tests": [ | 1463 "indicator_tests": [ |
| 1464 { "policy": { "ImportSavedPasswords": false } } | 1464 { "policy": { "ImportSavedPasswords": false } } |
| 1465 ] | 1465 ] |
| 1466 } | 1466 } |
| 1467 ] | 1467 ] |
| 1468 }, | 1468 }, |
| 1469 | 1469 |
| 1470 "ImportAutofillFormData": { |
| 1471 "os": ["win", "mac", "linux"], |
| 1472 "can_be_recommended": true, |
| 1473 "test_policy": { "ImportAutofillFormData": false }, |
| 1474 "pref_mappings": [ |
| 1475 { "pref": "import_autofill_form_data", |
| 1476 "indicator_tests": [ |
| 1477 { "policy": { "ImportAutofillFormData": false } } |
| 1478 ] |
| 1479 } |
| 1480 ] |
| 1481 }, |
| 1482 |
| 1470 "MaxConnectionsPerProxy": { | 1483 "MaxConnectionsPerProxy": { |
| 1471 "os": ["win", "linux", "mac", "chromeos"], | 1484 "os": ["win", "linux", "mac", "chromeos"], |
| 1472 "test_policy": { "MaxConnectionsPerProxy": 16 }, | 1485 "test_policy": { "MaxConnectionsPerProxy": 16 }, |
| 1473 "pref_mappings": [ | 1486 "pref_mappings": [ |
| 1474 { "pref": "net.max_connections_per_proxy", | 1487 { "pref": "net.max_connections_per_proxy", |
| 1475 "local_state": true | 1488 "local_state": true |
| 1476 } | 1489 } |
| 1477 ] | 1490 ] |
| 1478 }, | 1491 }, |
| 1479 | 1492 |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2384 | 2397 |
| 2385 "AdditionalLaunchParameters": { | 2398 "AdditionalLaunchParameters": { |
| 2386 }, | 2399 }, |
| 2387 | 2400 |
| 2388 "SuppressChromeFrameTurndownPrompt": { | 2401 "SuppressChromeFrameTurndownPrompt": { |
| 2389 }, | 2402 }, |
| 2390 | 2403 |
| 2391 "SkipMetadataCheck": { | 2404 "SkipMetadataCheck": { |
| 2392 } | 2405 } |
| 2393 } | 2406 } |
| OLD | NEW |