| Index: components/autofill/core/browser/form_structure.cc
|
| diff --git a/components/autofill/core/browser/form_structure.cc b/components/autofill/core/browser/form_structure.cc
|
| index 16a6c3495e78dd9cc64f6926d047b6160c778bea..4d95e771c34f1ecd8cf555a93b0c6b5f1d50cf20 100644
|
| --- a/components/autofill/core/browser/form_structure.cc
|
| +++ b/components/autofill/core/browser/form_structure.cc
|
| @@ -517,15 +517,12 @@ bool FormStructure::EncodeFieldAssignments(
|
| bool FormStructure::EncodeQueryRequest(
|
| const std::vector<FormStructure*>& forms,
|
| std::vector<std::string>* encoded_signatures,
|
| - std::vector<FormStructure*>* queried_forms,
|
| std::string* encoded_xml) {
|
| DCHECK(encoded_signatures);
|
| DCHECK(encoded_xml);
|
| encoded_xml->clear();
|
| encoded_signatures->clear();
|
| encoded_signatures->reserve(forms.size());
|
| - queried_forms->clear();
|
| - queried_forms->reserve(forms.size());
|
|
|
| // Set up the <autofillquery> element and attributes.
|
| buzz::XmlElement autofill_request_xml(
|
| @@ -553,7 +550,6 @@ bool FormStructure::EncodeQueryRequest(
|
|
|
| autofill_request_xml.AddElement(encompassing_xml_element.release());
|
| encoded_signatures->push_back(signature);
|
| - queried_forms->push_back(it);
|
| }
|
|
|
| if (!encoded_signatures->size())
|
|
|