| Index: components/autofill/core/browser/address.cc
|
| diff --git a/components/autofill/core/browser/address.cc b/components/autofill/core/browser/address.cc
|
| index de6514794d01becd9d229df36f4e7f19716e17ed..e629d161e0659fb9685d39c7055de8ee0ea6f7b8 100644
|
| --- a/components/autofill/core/browser/address.cc
|
| +++ b/components/autofill/core/browser/address.cc
|
| @@ -151,6 +151,9 @@ bool Address::SetInfo(const AutofillType& type,
|
|
|
| country_code_ = StringToUpperASCII(base::UTF16ToASCII(value));
|
| return true;
|
| + } else if (type.html_type() == HTML_TYPE_FULL_ADDRESS) {
|
| + // Parsing a full address is too hard.
|
| + return false;
|
| }
|
|
|
| ServerFieldType storable_type = type.GetStorableType();
|
|
|