Index: components/autofill/core/browser/address.cc |
diff --git a/components/autofill/core/browser/address.cc b/components/autofill/core/browser/address.cc |
index 79cdef9714f668fc528c09103ce97e1c94f6a483..5ca29290bfda5b6c4fa9f27a2866438ee7bd1a71 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(); |