| Index: components/autofill/browser/form_structure.cc
|
| diff --git a/components/autofill/browser/form_structure.cc b/components/autofill/browser/form_structure.cc
|
| index ba80803642d08d021b5f070310fe19e27d00ab4f..be0e8a550580a97322dfa1e21041d6db9cf924b4 100644
|
| --- a/components/autofill/browser/form_structure.cc
|
| +++ b/components/autofill/browser/form_structure.cc
|
| @@ -637,7 +637,9 @@ bool FormStructure::ShouldBeParsed(bool require_method_post) const {
|
| }
|
|
|
| bool FormStructure::ShouldBeCrowdsourced() const {
|
| - return !has_author_specified_types_ && ShouldBeParsed(true);
|
| + // Allow all forms in Autocheckout flow to be crowdsourced.
|
| + return (!has_author_specified_types_ && ShouldBeParsed(true)) ||
|
| + IsAutocheckoutEnabled();
|
| }
|
|
|
| void FormStructure::UpdateFromCache(const FormStructure& cached_form) {
|
|
|