| 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 1600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1611 }, | 1611 }, |
| 1612 | 1612 |
| 1613 "DisablePrintPreview": { | 1613 "DisablePrintPreview": { |
| 1614 "os": ["win", "mac", "linux"], | 1614 "os": ["win", "mac", "linux"], |
| 1615 "test_policy": { "DisablePrintPreview": false }, | 1615 "test_policy": { "DisablePrintPreview": false }, |
| 1616 "pref_mappings": [ | 1616 "pref_mappings": [ |
| 1617 { "pref": "printing.print_preview_disabled" } | 1617 { "pref": "printing.print_preview_disabled" } |
| 1618 ] | 1618 ] |
| 1619 }, | 1619 }, |
| 1620 | 1620 |
| 1621 "PrintPreviewDefaultPrinterSelection": { |
| 1622 "os": ["win", "linux", "mac", "chromeos"], |
| 1623 "test_policy": { |
| 1624 "PrintPreviewDefaultPrinterSelection": { |
| 1625 "kind": "local", |
| 1626 "namePattern": ".*" |
| 1627 } |
| 1628 }, |
| 1629 "pref_mappings": [ |
| 1630 { "pref": "printing.default_destination_selection_rules" } |
| 1631 ] |
| 1632 }, |
| 1633 |
| 1621 "BackgroundModeEnabled": { | 1634 "BackgroundModeEnabled": { |
| 1622 "os": ["win", "linux"], | 1635 "os": ["win", "linux"], |
| 1623 "can_be_recommended": true, | 1636 "can_be_recommended": true, |
| 1624 "test_policy": { "BackgroundModeEnabled": false }, | 1637 "test_policy": { "BackgroundModeEnabled": false }, |
| 1625 "pref_mappings": [ | 1638 "pref_mappings": [ |
| 1626 { "pref": "background_mode.enabled", | 1639 { "pref": "background_mode.enabled", |
| 1627 "local_state": true, | 1640 "local_state": true, |
| 1628 "indicator_tests": [ | 1641 "indicator_tests": [ |
| 1629 { "policy": { "BackgroundModeEnabled": false } } | 1642 { "policy": { "BackgroundModeEnabled": false } } |
| 1630 ] | 1643 ] |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2573 | 2586 |
| 2574 "AdditionalLaunchParameters": { | 2587 "AdditionalLaunchParameters": { |
| 2575 }, | 2588 }, |
| 2576 | 2589 |
| 2577 "SuppressChromeFrameTurndownPrompt": { | 2590 "SuppressChromeFrameTurndownPrompt": { |
| 2578 }, | 2591 }, |
| 2579 | 2592 |
| 2580 "SkipMetadataCheck": { | 2593 "SkipMetadataCheck": { |
| 2581 } | 2594 } |
| 2582 } | 2595 } |
| OLD | NEW |