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

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: Created 6 years, 4 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/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 ca73109db7e28183572d96cde04451ffe0f42a7c..06d28c2119f886f3fd99ce09db30e71d3ec6bcc4 100644
--- a/components/autofill/core/common/autofill_switches.cc
+++ b/components/autofill/core/common/autofill_switches.cc
@@ -7,6 +7,10 @@
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";
+
// Forces the password manager to not ignore autocomplete='off' for password
// forms.
const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off";
@@ -15,6 +19,10 @@ const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off";
// 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