Searched defs:cached_form (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
H A Dautofill_manager.cc1035 const FormStructure* cached_form,
1038 (!cached_form ||
1039 live_form.fields.size() != cached_form->field_count());
1040 for (size_t i = 0; !needs_update && i < cached_form->field_count(); ++i) {
1041 needs_update = *cached_form->field(i) != live_form.fields[i];
1056 if (cached_form) {
1058 for (size_t i = 0; i < cached_form->field_count(); ++i) {
1059 const AutofillField* field = cached_form->field(i);
1034 UpdateCachedForm(const FormData& live_form, const FormStructure* cached_form, FormStructure** updated_form) argument
H A Dform_structure.cc712 void FormStructure::UpdateFromCache(const FormStructure& cached_form) { argument
715 for (size_t i = 0; i < cached_form.field_count(); ++i) {
716 const AutofillField* field = cached_form.field(i);
746 DCHECK_EQ(cached_form.form_name_, form_name_);
747 DCHECK_EQ(cached_form.source_url_, source_url_);
748 DCHECK_EQ(cached_form.target_url_, target_url_);
749 form_signature_field_names_ = cached_form.form_signature_field_names_;

Completed in 79 milliseconds