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

Unified Diff: components/password_manager/core/common/password_manager_switches.cc

Issue 682133003: [Password Manager] Add link to remotely manage passowrds on desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698