| Index: components/autofill/core/common/autofill_constants.h
|
| diff --git a/components/autofill/core/common/autofill_constants.h b/components/autofill/core/common/autofill_constants.h
|
| index 1989e93558d204e76cd9732e24e4454816145dd5..2768a633dcd528db382786683affbb6e44cec89e 100644
|
| --- a/components/autofill/core/common/autofill_constants.h
|
| +++ b/components/autofill/core/common/autofill_constants.h
|
| @@ -11,6 +11,12 @@
|
|
|
| namespace autofill {
|
|
|
| +// A bit field mask for form or form element requirements.
|
| +enum RequirementsMask {
|
| + REQUIRE_NONE = 0, // No requirements.
|
| + REQUIRE_AUTOCOMPLETE = 1, // Require that autocomplete != off.
|
| +};
|
| +
|
| // Help URL for the Autofill dialog.
|
| extern const char kHelpURL[];
|
|
|
|
|