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", "android", "Defaults to empty if not specifie d."], | 5 "os": ["List of operating systems that support this policy. Valid values:", "win", "linux", "mac", "chromeos", "android", "Defaults to empty if not specifie d."], |
| 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 1943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1954 "test_policy": { "CertificateTransparencyEnforcementDisabledForUrls": ["exam ple.com"] }, | 1954 "test_policy": { "CertificateTransparencyEnforcementDisabledForUrls": ["exam ple.com"] }, |
| 1955 "pref_mappings": [ | 1955 "pref_mappings": [ |
| 1956 { "pref": "certificate_transparency.excluded_hosts" } | 1956 { "pref": "certificate_transparency.excluded_hosts" } |
| 1957 ] | 1957 ] |
| 1958 }, | 1958 }, |
| 1959 | 1959 |
| 1960 "RC4Enabled": { | 1960 "RC4Enabled": { |
| 1961 }, | 1961 }, |
| 1962 | 1962 |
| 1963 "DHEEnabled": { | 1963 "DHEEnabled": { |
| 1964 "os": ["win", "linux", "mac", "chromeos"], | |
|
pastarmovj
2017/01/23 23:28:06
Please use a "note" field to mark this policy as d
davidben
2017/01/24 21:00:03
Done. Also added it for the others I'd previously
| |
| 1965 "test_policy": { "DHEEnabled": true }, | |
| 1966 "pref_mappings": [ | |
| 1967 { "pref": "ssl.dhe_enabled", | |
| 1968 "local_state": true | |
| 1969 } | |
| 1970 ] | |
| 1971 }, | 1964 }, |
| 1972 | 1965 |
| 1973 "WelcomePageOnOSUpgradeEnabled": { | 1966 "WelcomePageOnOSUpgradeEnabled": { |
| 1974 "os": ["win"], | 1967 "os": ["win"], |
| 1975 "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, | 1968 "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, |
| 1976 "pref_mappings": [ | 1969 "pref_mappings": [ |
| 1977 { "pref": "browser.welcome_page_on_os_upgrade_enabled", | 1970 { "pref": "browser.welcome_page_on_os_upgrade_enabled", |
| 1978 "local_state": true | 1971 "local_state": true |
| 1979 } | 1972 } |
| 1980 ] | 1973 ] |
| (...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3044 | 3037 |
| 3045 "AdditionalLaunchParameters": { | 3038 "AdditionalLaunchParameters": { |
| 3046 }, | 3039 }, |
| 3047 | 3040 |
| 3048 "SuppressChromeFrameTurndownPrompt": { | 3041 "SuppressChromeFrameTurndownPrompt": { |
| 3049 }, | 3042 }, |
| 3050 | 3043 |
| 3051 "SkipMetadataCheck": { | 3044 "SkipMetadataCheck": { |
| 3052 } | 3045 } |
| 3053 } | 3046 } |
| OLD | NEW |