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

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

Issue 818433003: ChromeOS: Implement CaptivePortalAuthenticationIgnoresProxy policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 { "policy": { "DownloadDirectory": "${google_drive}/downloads" } } 495 { "policy": { "DownloadDirectory": "${google_drive}/downloads" } }
496 ] 496 ]
497 } 497 }
498 ] 498 ]
499 }, 499 },
500 500
501 "ClearSiteDataOnExit": { 501 "ClearSiteDataOnExit": {
502 "note": "This policy is retired, see http://crbug.com/133291." 502 "note": "This policy is retired, see http://crbug.com/133291."
503 }, 503 },
504 504
505 "CaptivePortalAuthenticationIgnoresProxy": {
506 "os": ["chromeos"],
507 "test_policy": { "IncognitoModeAvailability": 1 },
bartfab (slow) 2014/12/19 12:08:54 s/IncognitoModeAvailability/CaptivePortalAuthentic
Alexander Alekseev 2014/12/22 22:20:11 Done.
508 "pref_mappings": [
509 { "pref": "proxy.captive_portal_ignores_proxy" }
510 ]
511 },
512
505 "ProxyMode": { 513 "ProxyMode": {
506 "os": ["win", "mac", "linux"], 514 "os": ["win", "mac", "linux"],
507 "test_policy": { "ProxyMode": "direct" }, 515 "test_policy": { "ProxyMode": "direct" },
508 "pref_mappings": [ 516 "pref_mappings": [
509 { "pref": "proxy", 517 { "pref": "proxy",
510 "indicator_tests": [ 518 "indicator_tests": [
511 { "policy": { "ProxyMode": "direct" } } 519 { "policy": { "ProxyMode": "direct" } }
512 ] 520 ]
513 } 521 }
514 ] 522 ]
(...skipping 1939 matching lines...) Expand 10 before | Expand all | Expand 10 after
2454 2462
2455 "AdditionalLaunchParameters": { 2463 "AdditionalLaunchParameters": {
2456 }, 2464 },
2457 2465
2458 "SuppressChromeFrameTurndownPrompt": { 2466 "SuppressChromeFrameTurndownPrompt": {
2459 }, 2467 },
2460 2468
2461 "SkipMetadataCheck": { 2469 "SkipMetadataCheck": {
2462 } 2470 }
2463 } 2471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698