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

/external/chromium/chrome/browser/autofill/
H A Dform_structure.cc328 void FormStructure::UpdateFromCache(const FormStructure& cached_form) { argument
331 for (size_t i = 0; i < cached_form.field_count(); ++i) {
332 const AutofillField* field = cached_form.field(i);
352 server_experiment_id_ = cached_form.server_experiment_id();
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_manager.cc907 const FormStructure* cached_form,
910 (!cached_form ||
911 live_form.fields.size() != cached_form->field_count());
912 for (size_t i = 0; !needs_update && i < cached_form->field_count(); ++i) {
913 needs_update = *cached_form->field(i) != live_form.fields[i];
928 if (cached_form) {
930 for (size_t i = 0; i < cached_form->field_count(); ++i) {
931 const AutofillField* field = cached_form->field(i);
906 UpdateCachedForm(const FormData& live_form, const FormStructure* cached_form, FormStructure** updated_form) argument
H A Dform_structure.cc706 void FormStructure::UpdateFromCache(const FormStructure& cached_form) { argument
709 for (size_t i = 0; i < cached_form.field_count(); ++i) {
710 const AutofillField* field = cached_form.field(i);
735 server_experiment_id_ = cached_form.server_experiment_id();
742 DCHECK_EQ(cached_form.form_name_, form_name_);
743 DCHECK_EQ(cached_form.source_url_, source_url_);
744 DCHECK_EQ(cached_form.target_url_, target_url_);
745 form_signature_field_names_ = cached_form.form_signature_field_names_;

Completed in 197 milliseconds