Home | History | Annotate | Download | only in browser

Lines Matching refs:form_structure

5 #include "components/autofill/core/browser/form_structure.h"
465 // To enable this logging, run with the flag --vmodule="form_structure=2".
629 FormStructure* form_structure = form_structures[i];
631 form.data.name = form_structure->form_name_;
633 base::ASCIIToUTF16((form_structure->method_ == POST) ? "POST" : "GET");
634 form.data.origin = form_structure->source_url_;
635 form.data.action = form_structure->target_url_;
636 form.signature = form_structure->FormSignature();
639 form_structure->fields_.begin();
640 field != form_structure->fields_.end(); ++field) {