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 2770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2781 }, | 2781 }, |
2782 | 2782 |
2783 "LoginVideoCaptureAllowedUrls": { | 2783 "LoginVideoCaptureAllowedUrls": { |
2784 "os": ["chromeos"], | 2784 "os": ["chromeos"], |
2785 "test_policy": { "LoginVideoCaptureAllowedUrls": [ "https://example.com" ] }
, | 2785 "test_policy": { "LoginVideoCaptureAllowedUrls": [ "https://example.com" ] }
, |
2786 "pref_mappings": [ | 2786 "pref_mappings": [ |
2787 { "pref": "cros.device.login_video_capture_allowed_urls" } | 2787 { "pref": "cros.device.login_video_capture_allowed_urls" } |
2788 ] | 2788 ] |
2789 }, | 2789 }, |
2790 | 2790 |
| 2791 "LoginApps": { |
| 2792 "os": ["chromeos"], |
| 2793 "test_policy": { "LoginApps": [ "abcdefghijklmnopabcdefghijklmnop" ] }, |
| 2794 "pref_mappings": [ |
| 2795 { "pref": "cros.device.login_apps" } |
| 2796 ] |
| 2797 }, |
| 2798 |
2791 "----- Chrome Frame policies -------------------------------------------": {}, | 2799 "----- Chrome Frame policies -------------------------------------------": {}, |
2792 | 2800 |
2793 "ChromeFrameRendererSettings": { | 2801 "ChromeFrameRendererSettings": { |
2794 }, | 2802 }, |
2795 | 2803 |
2796 "RenderInChromeFrameList": { | 2804 "RenderInChromeFrameList": { |
2797 }, | 2805 }, |
2798 | 2806 |
2799 "RenderInHostList": { | 2807 "RenderInHostList": { |
2800 }, | 2808 }, |
2801 | 2809 |
2802 "ChromeFrameContentTypes": { | 2810 "ChromeFrameContentTypes": { |
2803 }, | 2811 }, |
2804 | 2812 |
2805 "GCFUserDataDir": { | 2813 "GCFUserDataDir": { |
2806 }, | 2814 }, |
2807 | 2815 |
2808 "AdditionalLaunchParameters": { | 2816 "AdditionalLaunchParameters": { |
2809 }, | 2817 }, |
2810 | 2818 |
2811 "SuppressChromeFrameTurndownPrompt": { | 2819 "SuppressChromeFrameTurndownPrompt": { |
2812 }, | 2820 }, |
2813 | 2821 |
2814 "SkipMetadataCheck": { | 2822 "SkipMetadataCheck": { |
2815 } | 2823 } |
2816 } | 2824 } |
OLD | NEW |