| Index: components/password_manager/core/common/password_manager_switches.cc
|
| diff --git a/components/password_manager/core/common/password_manager_switches.cc b/components/password_manager/core/common/password_manager_switches.cc
|
| index 846d5990def36a426ee2e5a76964684ab16849ea..b2ced8a0603c2391e80967f8cb87aee0b46c40f2 100644
|
| --- a/components/password_manager/core/common/password_manager_switches.cc
|
| +++ b/components/password_manager/core/common/password_manager_switches.cc
|
| @@ -12,10 +12,6 @@ namespace switches {
|
| const char kAllowAutofillSyncCredential[] =
|
| "allow-autofill-sync-credential";
|
|
|
| -// Disable the link in the password manager settings page that points to account
|
| -// central.
|
| -const char kDisableAndroidPasswordLink[] = "disable-android-password-link";
|
| -
|
| // Disable dropping the credential used to sync passwords.
|
| const char kDisableDropSyncCredential[] =
|
| "disable-drop-sync-credential";
|
| @@ -24,6 +20,10 @@ const char kDisableDropSyncCredential[] =
|
| const char kDisableManagerForSyncSignin[] =
|
| "disable-manager-for-sync-signin";
|
|
|
| +// Disable the link in the password manager settings page that points to account
|
| +// central.
|
| +const char kDisablePasswordLink[] = "disable-password-link";
|
| +
|
| // Disallow autofilling of the sync credential.
|
| const char kDisallowAutofillSyncCredential[] =
|
| "disallow-autofill-sync-credential";
|
| @@ -33,9 +33,10 @@ const char kDisallowAutofillSyncCredential[] =
|
| const char kDisallowAutofillSyncCredentialForReauth[] =
|
| "disallow-autofill-sync-credential-for-reauth";
|
|
|
| -// Enable the link in the password manager settings page that points to account
|
| -// central.
|
| -const char kEnableAndroidPasswordLink[] = "enable-android-password-link";
|
| +// Disables the save-password prompt. Passwords are then saved automatically,
|
| +// without asking the user.
|
| +const char kEnableAutomaticPasswordSaving[] =
|
| + "enable-automatic-password-saving";
|
|
|
| // Enable dropping the credential used to sync passwords.
|
| const char kEnableDropSyncCredential[] =
|
| @@ -46,10 +47,9 @@ const char kEnableDropSyncCredential[] =
|
| const char kEnableManagerForSyncSignin[] =
|
| "enable-manager-for-sync-signin";
|
|
|
| -// Disables the save-password prompt. Passwords are then saved automatically,
|
| -// without asking the user.
|
| -const char kEnableAutomaticPasswordSaving[] =
|
| - "enable-automatic-password-saving";
|
| +// Enable the link in the password manager settings page that points to account
|
| +// central.
|
| +const char kEnablePasswordLink[] = "enable-password-link";
|
|
|
| } // namespace switches
|
|
|
|
|