Chromium Code Reviews| 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 2096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2107 }, | 2107 }, |
| 2108 | 2108 |
| 2109 "NativeMessagingUserLevelHosts": { | 2109 "NativeMessagingUserLevelHosts": { |
| 2110 "os": ["win", "linux", "mac"], | 2110 "os": ["win", "linux", "mac"], |
| 2111 "test_policy": { "NativeMessagingUserLevelHosts": false }, | 2111 "test_policy": { "NativeMessagingUserLevelHosts": false }, |
| 2112 "pref_mappings": [ | 2112 "pref_mappings": [ |
| 2113 { "pref": "native_messaging.user_level_hosts" } | 2113 { "pref": "native_messaging.user_level_hosts" } |
| 2114 ] | 2114 ] |
| 2115 }, | 2115 }, |
| 2116 | 2116 |
| 2117 "EnableDeprecatedWebPlatformFeatures": { | |
| 2118 "os": ["win", "linux", "mac", "chromeos", "android"], | |
|
jamesr
2014/06/19 00:03:02
showmodaldialog has never worked on android
Andrew T Wilson (Slow)
2014/06/19 00:13:30
"android" refers to whether the top-level policy (
| |
| 2119 "test_policy": { | |
| 2120 "EnableDeprecatedWebPlatformFeatures": [ | |
| 2121 "ShowModalDialog_EffectiveUntil20150430" | |
| 2122 ] | |
| 2123 }, | |
| 2124 "pref_mappings": [ | |
| 2125 { "pref": "webkit.webprefs.enable_deprecated_feature" } | |
| 2126 ] | |
| 2127 }, | |
| 2128 | |
| 2117 "----- Chrome OS device policies ---------------------------------------": {}, | 2129 "----- Chrome OS device policies ---------------------------------------": {}, |
| 2118 | 2130 |
| 2119 "DevicePolicyRefreshRate": { | 2131 "DevicePolicyRefreshRate": { |
| 2120 "os": ["chromeos"], | 2132 "os": ["chromeos"], |
| 2121 "test_policy": { "DevicePolicyRefreshRate": 300000 }, | 2133 "test_policy": { "DevicePolicyRefreshRate": 300000 }, |
| 2122 "pref_mappings": [ | 2134 "pref_mappings": [ |
| 2123 { "pref": "policy.device_refresh_rate", | 2135 { "pref": "policy.device_refresh_rate", |
| 2124 "local_state": true } | 2136 "local_state": true } |
| 2125 ] | 2137 ] |
| 2126 }, | 2138 }, |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2313 | 2325 |
| 2314 "AdditionalLaunchParameters": { | 2326 "AdditionalLaunchParameters": { |
| 2315 }, | 2327 }, |
| 2316 | 2328 |
| 2317 "SuppressChromeFrameTurndownPrompt": { | 2329 "SuppressChromeFrameTurndownPrompt": { |
| 2318 }, | 2330 }, |
| 2319 | 2331 |
| 2320 "SkipMetadataCheck": { | 2332 "SkipMetadataCheck": { |
| 2321 } | 2333 } |
| 2322 } | 2334 } |
| OLD | NEW |