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

Unified Diff: components/autofill/core/common/autofill_switches.cc

Issue 492043003: Fill on account select in the password manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-added check that form contains a username field. Created 6 years, 1 month 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/autofill/core/common/autofill_switches.cc
diff --git a/components/autofill/core/common/autofill_switches.cc b/components/autofill/core/common/autofill_switches.cc
index b37b141dbb0b378a935f0640917b2e6b7a67f675..5c2b612a1a5b1e7ac3d8b1eeb0de2b4558adb1dc 100644
--- a/components/autofill/core/common/autofill_switches.cc
+++ b/components/autofill/core/common/autofill_switches.cc
@@ -7,10 +7,18 @@
namespace autofill {
namespace switches {
+// Disables the experiment for the password manager to only fill on account
+// selection, rather than autofilling on page load.
+const char kDisableFillOnAccountSelect[] = "disable-fill-on-account-select";
+
// Disables password generation when we detect that the user is going through
// account creation.
const char kDisablePasswordGeneration[] = "disable-password-generation";
+// Enables the experiment for the password manager to only fill on account
+// selection, rather than autofilling on page load.
+const char kEnableFillOnAccountSelect[] = "enable-fill-on-account-select";
+
// Enables password generation when we detect that the user is going through
// account creation.
const char kEnablePasswordGeneration[] = "enable-password-generation";

Powered by Google App Engine
This is Rietveld 408576698