Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_STRUCTURE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_STRUCTURE_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_STRUCTURE_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_STRUCTURE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 294 // the real values of |has_author_specified_types_| and | 294 // the real values of |has_author_specified_types_| and |
| 295 // |has_author_specified_sections_|. | 295 // |has_author_specified_sections_|. |
| 296 bool was_parsed_for_autocomplete_attributes_; | 296 bool was_parsed_for_autocomplete_attributes_; |
| 297 | 297 |
| 298 // True if the form contains at least one password field. | 298 // True if the form contains at least one password field. |
| 299 bool has_password_field_; | 299 bool has_password_field_; |
| 300 | 300 |
| 301 // True if the form is a <form>. | 301 // True if the form is a <form>. |
| 302 bool is_form_tag_; | 302 bool is_form_tag_; |
| 303 | 303 |
| 304 // True if the form is made of unowned fields in a non checkout flow. The | |
| 305 // fields should be filled using only the autocomplete attributes. | |
|
Mathieu
2016/02/05 18:39:06
don't mention behavior, just what the attribute is
sebsg
2016/02/05 20:08:00
Done.
| |
| 306 bool is_syntehtic_non_checkout_form; | |
| 307 | |
| 304 DISALLOW_COPY_AND_ASSIGN(FormStructure); | 308 DISALLOW_COPY_AND_ASSIGN(FormStructure); |
| 305 }; | 309 }; |
| 306 | 310 |
| 307 } // namespace autofill | 311 } // namespace autofill |
| 308 | 312 |
| 309 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_STRUCTURE_H_ | 313 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_STRUCTURE_H_ |
| OLD | NEW |