Chromium Code Reviews| Index: components/autofill/core/browser/form_structure.h |
| diff --git a/components/autofill/core/browser/form_structure.h b/components/autofill/core/browser/form_structure.h |
| index 14cdd1da1f237c4fb50591cc29507a9e231bd8f3..f400803215db35c869aac1987503e63ef9d9c435 100644 |
| --- a/components/autofill/core/browser/form_structure.h |
| +++ b/components/autofill/core/browser/form_structure.h |
| @@ -71,15 +71,14 @@ class FormStructure { |
| // Encodes the XML query request for the set of |forms| that are valid (see |
| // implementation for details on which forms are not included in the query). |
| - // The forms and form signatures used in the Query request are output in |
| - // |queried_forms| and |encoded_signatures|, respectively. All valid fields |
| - // are encoded in |encoded_xml|. For example, there are three valid forms, |
| - // with 2, 4, and 3 fields. The returned XML would have type info for 9 |
| - // fields, first two of which would be for the first form, next 4 for the |
| - // second, and the rest is for the third. |
| + // The form signatures used in the Query request are output in |
| + // |encoded_signatures|, respectively. All valid fields are encoded in |
|
vabr (Chromium)
2015/11/19 07:56:04
nit: No need for 'respectively' any more.
Mathieu
2015/11/19 13:20:55
Done.
|
| + // |encoded_xml|. For example, there are three valid forms, with 2, 4, and 3 |
| + // fields. The returned XML would have type info for 9 fields, first two of |
| + // which would be for the first form, next 4 for the second, and the rest is |
| + // for the third. |
| static bool EncodeQueryRequest(const std::vector<FormStructure*>& forms, |
| std::vector<std::string>* encoded_signatures, |
| - std::vector<FormStructure*>* queried_forms, |
| std::string* encoded_xml); |
| // Parses the field types from the server query response. |forms| must be the |