| Index: components/autofill/core/browser/autofill_xml_parser.cc
|
| diff --git a/components/autofill/core/browser/autofill_xml_parser.cc b/components/autofill/core/browser/autofill_xml_parser.cc
|
| index 4ab906179b553ec53b0d4f95efd3d22d4ca6f7f5..40785abfb1f34916119c4cd7ac4074131d6a7d66 100644
|
| --- a/components/autofill/core/browser/autofill_xml_parser.cc
|
| +++ b/components/autofill/core/browser/autofill_xml_parser.cc
|
| @@ -119,6 +119,8 @@ void AutofillQueryXmlParser::StartElement(buzz::XmlParseContext* context,
|
| page_meta_data_->current_page_number = GetIntValue(context, *attrs);
|
| else if (attribute_name.compare("total_pages") == 0)
|
| page_meta_data_->total_pages = GetIntValue(context, *attrs);
|
| + else if (attribute_name.compare("ignore_ajax") == 0)
|
| + page_meta_data_->ignore_ajax = strcmp(*attrs, "true") == 0;
|
| ++attrs;
|
| }
|
| } else if (element.compare("page_advance_button") == 0) {
|
|
|