| 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 7e7a16ba6e1292488c88ab83350037b110c316b2..76c1db253c2b0dad17b660bd5008fa82b0b5aa85 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";
|
| +
|
| // Disables password generation when we detect that the user is going through
|
| // account creation.
|
| const char kDisablePasswordGeneration[] = "disable-password-generation";
|
| @@ -15,6 +19,10 @@ const char kDisablePasswordGeneration[] = "disable-password-generation";
|
| const char kDisambiguateAutofillServerNameTypes[] =
|
| "disambiguate-autofill-server-name-types";
|
|
|
| +// 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";
|
|
|