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

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

Issue 256003003: Enable Automatic Passwords Saving (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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.", 3 "intro": "Top-level entries map a policy name to its test parameters, descri bed below.",
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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 "test_policy": { "PasswordManagerEnabled": false }, 309 "test_policy": { "PasswordManagerEnabled": false },
310 "pref_mappings": [ 310 "pref_mappings": [
311 { "pref": "profile.password_manager_enabled", 311 { "pref": "profile.password_manager_enabled",
312 "indicator_tests": [ 312 "indicator_tests": [
313 { "policy": { "PasswordManagerEnabled": false } } 313 { "policy": { "PasswordManagerEnabled": false } }
314 ] 314 ]
315 } 315 }
316 ] 316 ]
317 }, 317 },
318 318
319 "PasswordManagerEnableAutomaticPasswordsSaving": {
vabr (Chromium) 2014/04/28 09:13:14 I don't understand what's the purpose of this chan
rchtara 2014/04/28 11:28:29 Done.
320 "os": ["win", "linux", "mac", "chromeos"],
321 "can_be_recommended": true,
322 "test_policy": { "PasswordManagerEnableAutomaticPasswordsSaving": false },
323 "pref_mappings": [
324 { "pref": "profile.password_manager_enable_automatic_passwords_saving",
325 "indicator_tests": [
326 { "policy": { "PasswordManagerEnableAutomaticPasswordsSaving": false } }
327 ]
328 }
329 ]
330 },
331
319 "PasswordManagerAllowShowPasswords": { 332 "PasswordManagerAllowShowPasswords": {
320 "os": ["win", "linux", "mac", "chromeos"], 333 "os": ["win", "linux", "mac", "chromeos"],
321 "test_policy": { "PasswordManagerAllowShowPasswords": false }, 334 "test_policy": { "PasswordManagerAllowShowPasswords": false },
322 "pref_mappings": [ 335 "pref_mappings": [
323 { "pref": "profile.password_manager_allow_show_passwords" } 336 { "pref": "profile.password_manager_allow_show_passwords" }
324 ] 337 ]
325 }, 338 },
326 339
327 "AutoFillEnabled": { 340 "AutoFillEnabled": {
328 "os": ["win", "linux", "mac", "chromeos"], 341 "os": ["win", "linux", "mac", "chromeos"],
(...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 2271
2259 "AdditionalLaunchParameters": { 2272 "AdditionalLaunchParameters": {
2260 }, 2273 },
2261 2274
2262 "SuppressChromeFrameTurndownPrompt": { 2275 "SuppressChromeFrameTurndownPrompt": {
2263 }, 2276 },
2264 2277
2265 "SkipMetadataCheck": { 2278 "SkipMetadataCheck": {
2266 } 2279 }
2267 } 2280 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698