| 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 1806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1817 | 1817 |
| 1818 "AudioOutputAllowed": { | 1818 "AudioOutputAllowed": { |
| 1819 "os": ["chromeos"], | 1819 "os": ["chromeos"], |
| 1820 "test_policy": { "AudioOutputAllowed": true }, | 1820 "test_policy": { "AudioOutputAllowed": true }, |
| 1821 "pref_mappings": [ | 1821 "pref_mappings": [ |
| 1822 { "pref": "hardware.audio_output_enabled", | 1822 { "pref": "hardware.audio_output_enabled", |
| 1823 "local_state": true } | 1823 "local_state": true } |
| 1824 ] | 1824 ] |
| 1825 }, | 1825 }, |
| 1826 | 1826 |
| 1827 "AudioCaptureAllowed": { | |
| 1828 "os": ["chromeos"], | |
| 1829 "test_policy": { "AudioCaptureAllowed": true }, | |
| 1830 "pref_mappings": [ | |
| 1831 { "pref": "hardware.audio_capture_enabled", | |
| 1832 "local_state": true } | |
| 1833 ] | |
| 1834 }, | |
| 1835 | |
| 1836 "ShowLogoutButtonInTray": { | 1827 "ShowLogoutButtonInTray": { |
| 1837 "os": ["chromeos"], | 1828 "os": ["chromeos"], |
| 1838 "test_policy": { "ShowLogoutButtonInTray": true }, | 1829 "test_policy": { "ShowLogoutButtonInTray": true }, |
| 1839 "pref_mappings": [ | 1830 "pref_mappings": [ |
| 1840 { "pref": "show_logout_button_in_tray" } | 1831 { "pref": "show_logout_button_in_tray" } |
| 1841 ] | 1832 ] |
| 1842 }, | 1833 }, |
| 1843 | 1834 |
| 1844 "ShelfAutoHideBehavior": { | 1835 "ShelfAutoHideBehavior": { |
| 1845 "os": ["chromeos"], | 1836 "os": ["chromeos"], |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2452 | 2443 |
| 2453 "AdditionalLaunchParameters": { | 2444 "AdditionalLaunchParameters": { |
| 2454 }, | 2445 }, |
| 2455 | 2446 |
| 2456 "SuppressChromeFrameTurndownPrompt": { | 2447 "SuppressChromeFrameTurndownPrompt": { |
| 2457 }, | 2448 }, |
| 2458 | 2449 |
| 2459 "SkipMetadataCheck": { | 2450 "SkipMetadataCheck": { |
| 2460 } | 2451 } |
| 2461 } | 2452 } |
| OLD | NEW |