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 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1793 | 1793 |
| 1794 "SSLVersionMin": { | 1794 "SSLVersionMin": { |
| 1795 }, | 1795 }, |
| 1796 | 1796 |
| 1797 "SSLVersionFallbackMin": { | 1797 "SSLVersionFallbackMin": { |
| 1798 "os": ["win", "linux", "mac", "chromeos"], | 1798 "os": ["win", "linux", "mac", "chromeos"], |
| 1799 "test_policy": { "SSLVersionFallbackMin": "tls1.2" }, | 1799 "test_policy": { "SSLVersionFallbackMin": "tls1.2" }, |
| 1800 "pref_mappings": [] | 1800 "pref_mappings": [] |
| 1801 }, | 1801 }, |
| 1802 | 1802 |
| 1803 "RC4Enabled": { | |
| 1804 "os": ["win", "linux", "mac", "chromeos"], | |
|
Ryan Sleevi
2015/10/27 22:58:37
Shouldn't this include "android"?
It looks like s
| |
| 1805 "test_policy": { "RC4Enabled": true }, | |
| 1806 "pref_mappings": [ | |
| 1807 { "pref": "ssl.rc4_enabled", | |
| 1808 "local_state": true | |
| 1809 } | |
| 1810 ] | |
| 1811 }, | |
| 1812 | |
| 1803 "WelcomePageOnOSUpgradeEnabled": { | 1813 "WelcomePageOnOSUpgradeEnabled": { |
| 1804 "os": ["win"], | 1814 "os": ["win"], |
| 1805 "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, | 1815 "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, |
| 1806 "pref_mappings": [ | 1816 "pref_mappings": [ |
| 1807 { "pref": "browser.welcome_page_on_os_upgrade_enabled", | 1817 { "pref": "browser.welcome_page_on_os_upgrade_enabled", |
| 1808 "local_state": true | 1818 "local_state": true |
| 1809 } | 1819 } |
| 1810 ] | 1820 ] |
| 1811 }, | 1821 }, |
| 1812 | 1822 |
| (...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2583 | 2593 |
| 2584 "AdditionalLaunchParameters": { | 2594 "AdditionalLaunchParameters": { |
| 2585 }, | 2595 }, |
| 2586 | 2596 |
| 2587 "SuppressChromeFrameTurndownPrompt": { | 2597 "SuppressChromeFrameTurndownPrompt": { |
| 2588 }, | 2598 }, |
| 2589 | 2599 |
| 2590 "SkipMetadataCheck": { | 2600 "SkipMetadataCheck": { |
| 2591 } | 2601 } |
| 2592 } | 2602 } |
| OLD | NEW |