| Index: components/autofill/core/browser/form_structure.h
|
| diff --git a/components/autofill/core/browser/form_structure.h b/components/autofill/core/browser/form_structure.h
|
| index e93621012de98cda8af744caa37081fded771b8f..119117aa96df1342dbf1e3a1ec8c57b41d429c15 100644
|
| --- a/components/autofill/core/browser/form_structure.h
|
| +++ b/components/autofill/core/browser/form_structure.h
|
| @@ -43,7 +43,7 @@ struct FormDataPredictions;
|
| // in the fields along with additional information needed by Autofill.
|
| class FormStructure {
|
| public:
|
| - FormStructure(const FormData& form);
|
| + explicit FormStructure(const FormData& form);
|
| virtual ~FormStructure();
|
|
|
| // Runs several heuristics against the form fields to determine their possible
|
| @@ -254,6 +254,9 @@ class FormStructure {
|
| // True if the form contains at least one password field.
|
| bool has_password_field_;
|
|
|
| + // True if the form is a <form>.
|
| + bool is_form_tag_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(FormStructure);
|
| };
|
|
|
|
|