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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 { "policy": { "DownloadDirectory": "${google_drive}/downloads" } } | 463 { "policy": { "DownloadDirectory": "${google_drive}/downloads" } } |
464 ] | 464 ] |
465 } | 465 } |
466 ] | 466 ] |
467 }, | 467 }, |
468 | 468 |
469 "ClearSiteDataOnExit": { | 469 "ClearSiteDataOnExit": { |
470 "note": "This policy is retired, see http://crbug.com/133291." | 470 "note": "This policy is retired, see http://crbug.com/133291." |
471 }, | 471 }, |
472 | 472 |
| 473 "CaptivePortalAuthenticationIgnoresProxy": { |
| 474 "os": ["chromeos"], |
| 475 "test_policy": { "CaptivePortalAuthenticationIgnoresProxy": true }, |
| 476 "pref_mappings": [ |
| 477 { "pref": "proxy.captive_portal_ignores_proxy" } |
| 478 ] |
| 479 }, |
| 480 |
473 "ProxyMode": { | 481 "ProxyMode": { |
474 "os": ["win", "mac", "linux"], | 482 "os": ["win", "mac", "linux"], |
475 "test_policy": { "ProxyMode": "direct" }, | 483 "test_policy": { "ProxyMode": "direct" }, |
476 "pref_mappings": [ | 484 "pref_mappings": [ |
477 { "pref": "proxy", | 485 { "pref": "proxy", |
478 "indicator_tests": [ | 486 "indicator_tests": [ |
479 { "policy": { "ProxyMode": "direct" } } | 487 { "policy": { "ProxyMode": "direct" } } |
480 ] | 488 ] |
481 } | 489 } |
482 ] | 490 ] |
(...skipping 1943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2426 | 2434 |
2427 "AdditionalLaunchParameters": { | 2435 "AdditionalLaunchParameters": { |
2428 }, | 2436 }, |
2429 | 2437 |
2430 "SuppressChromeFrameTurndownPrompt": { | 2438 "SuppressChromeFrameTurndownPrompt": { |
2431 }, | 2439 }, |
2432 | 2440 |
2433 "SkipMetadataCheck": { | 2441 "SkipMetadataCheck": { |
2434 } | 2442 } |
2435 } | 2443 } |
OLD | NEW |