| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/password_manager/core/common/password_manager_switches.h" | 5 #include "components/password_manager/core/common/password_manager_switches.h" |
| 6 | 6 |
| 7 namespace password_manager { | 7 namespace password_manager { |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 // pages. | 31 // pages. |
| 32 const char kDisallowAutofillSyncCredentialForReauth[] = | 32 const char kDisallowAutofillSyncCredentialForReauth[] = |
| 33 "disallow-autofill-sync-credential-for-reauth"; | 33 "disallow-autofill-sync-credential-for-reauth"; |
| 34 | 34 |
| 35 // Enable affiliation based matching, so that credentials stored for an Android | 35 // Enable affiliation based matching, so that credentials stored for an Android |
| 36 // application will also be considered matches for, and be filled into | 36 // application will also be considered matches for, and be filled into |
| 37 // corresponding Web applications. | 37 // corresponding Web applications. |
| 38 const char kEnableAffiliationBasedMatching[] = | 38 const char kEnableAffiliationBasedMatching[] = |
| 39 "enable-affiliation-based-matching"; | 39 "enable-affiliation-based-matching"; |
| 40 | 40 |
| 41 // Disables the save-password prompt. Passwords are then saved automatically, | |
| 42 // without asking the user. | |
| 43 const char kEnableAutomaticPasswordSaving[] = | |
| 44 "enable-automatic-password-saving"; | |
| 45 | |
| 46 // Enable dropping the credential used to sync passwords. | 41 // Enable dropping the credential used to sync passwords. |
| 47 const char kEnableDropSyncCredential[] = "enable-drop-sync-credential"; | 42 const char kEnableDropSyncCredential[] = "enable-drop-sync-credential"; |
| 48 | 43 |
| 49 // Enable saving and filling for the sync signin form. Currently the default | 44 // Enable saving and filling for the sync signin form. Currently the default |
| 50 // behavior. | 45 // behavior. |
| 51 const char kEnableManagerForSyncSignin[] = "enable-manager-for-sync-signin"; | 46 const char kEnableManagerForSyncSignin[] = "enable-manager-for-sync-signin"; |
| 52 | 47 |
| 53 // Enable supporting of updating password in the password manager on a password | |
| 54 // change form submit. | |
| 55 const char kEnablePasswordChangeSupport[] = "enable-password-change-support"; | |
| 56 | |
| 57 // Enable a context menu item in the password field that allows the user | |
| 58 // to manually enforce saving of their password. | |
| 59 const char kEnablePasswordForceSaving[] = "enable-password-force-saving"; | |
| 60 | |
| 61 } // namespace switches | 48 } // namespace switches |
| 62 | 49 |
| 63 } // namespace password_manager | 50 } // namespace password_manager |
| OLD | NEW |