Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: chrome/test/data/policy/policy_test_cases.json

Issue 2340743003: Add new BrowserForceSigninEnabeld policy option with future:true flag. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1856 matching lines...) Expand 10 before | Expand all | Expand 10 after
1867 "BrowserAddPersonEnabled": { 1867 "BrowserAddPersonEnabled": {
1868 "os": ["win", "linux", "mac"], 1868 "os": ["win", "linux", "mac"],
1869 "test_policy": { "BrowserAddPersonEnabled": true }, 1869 "test_policy": { "BrowserAddPersonEnabled": true },
1870 "pref_mappings": [ 1870 "pref_mappings": [
1871 { "pref": "profile.add_person_enabled", 1871 { "pref": "profile.add_person_enabled",
1872 "local_state": true 1872 "local_state": true
1873 } 1873 }
1874 ] 1874 ]
1875 }, 1875 },
1876 1876
1877 "BrowserForceSigninEnabled": {
1878 "os": ["win", "linux", "mac"],
1879 "test_policy": { "BrowserForceSigninEnabled": false },
1880 "pref_mappings": [
1881 { "pref": "profile.force_signin_enabled",
1882 "local_state": false
1883 }
1884 ]
1885 },
1886
1877 "SSLVersionMin": { 1887 "SSLVersionMin": {
1878 }, 1888 },
1879 1889
1880 "SSLVersionFallbackMin": { 1890 "SSLVersionFallbackMin": {
1881 }, 1891 },
1882 1892
1883 "CertificateTransparencyEnforcementDisabledForUrls": { 1893 "CertificateTransparencyEnforcementDisabledForUrls": {
1884 "os": ["win", "linux", "mac", "chromeos", "android"], 1894 "os": ["win", "linux", "mac", "chromeos", "android"],
1885 "test_policy": { "CertificateTransparencyEnforcementDisabledForUrls": ["exam ple.com"] }, 1895 "test_policy": { "CertificateTransparencyEnforcementDisabledForUrls": ["exam ple.com"] },
1886 "pref_mappings": [ 1896 "pref_mappings": [
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
2885 2895
2886 "AdditionalLaunchParameters": { 2896 "AdditionalLaunchParameters": {
2887 }, 2897 },
2888 2898
2889 "SuppressChromeFrameTurndownPrompt": { 2899 "SuppressChromeFrameTurndownPrompt": {
2890 }, 2900 },
2891 2901
2892 "SkipMetadataCheck": { 2902 "SkipMetadataCheck": {
2893 } 2903 }
2894 } 2904 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698