Chromium Code Reviews| Index: components/autofill/core/common/form_data.h |
| diff --git a/components/autofill/core/common/form_data.h b/components/autofill/core/common/form_data.h |
| index a406ccbd3d2c70958df8187e20673a1c0f92cf5c..929019b0e82c22c2b5934c833bbc6cca7451fcdd 100644 |
| --- a/components/autofill/core/common/form_data.h |
| +++ b/components/autofill/core/common/form_data.h |
| @@ -32,8 +32,11 @@ struct FormData { |
| GURL origin; |
| // The action target of the form. |
| GURL action; |
| - // true if this form is a form tag. |
| + // True if this form is a form tag. |
| bool is_form_tag; |
| + // True if the form is made of unowned fields in a non checkout flow. The |
| + // fields should be filled using only the autocomplete attributes. |
|
Mathieu
2016/02/05 22:36:45
nit: don't mention behavior.
sebsg
2016/02/09 01:13:57
Done.
|
| + bool is_formless_checkout; |
| // A vector of all the input fields in the form. |
| std::vector<FormFieldData> fields; |
| }; |