Index: chrome/browser/autofill/form_structure.cc |
diff --git a/chrome/browser/autofill/form_structure.cc b/chrome/browser/autofill/form_structure.cc |
index 4367e6614a32b6300d23514423a258050fa35733..da3999314e63ab30934c0f14744019df1028c1cf 100644 |
--- a/chrome/browser/autofill/form_structure.cc |
+++ b/chrome/browser/autofill/form_structure.cc |
@@ -108,7 +108,7 @@ bool FormStructure::EncodeUploadRequest(bool auto_fill_used, |
std::string* encoded_xml) const { |
DCHECK(encoded_xml); |
encoded_xml->clear(); |
- bool auto_fillable = IsAutoFillable(false); |
+ bool auto_fillable = ShouldBeParsed(true); |
DCHECK(auto_fillable); // Caller should've checked for search pages. |
if (!auto_fillable) |
return false; |