HomeSort by relevance Sort by last modified time
    Searched full:submitted_form (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/components/autofill/core/browser/
autofill_manager.cc 126 // possible field types for the |submitted_form|. This is potentially
134 FormStructure* submitted_form) {
135 // For each field in the |submitted_form|, extract the value. Then for each
137 for (size_t i = 0; i < submitted_form->field_count(); ++i) {
138 AutofillField* field = submitted_form->field(i);
330 scoped_ptr<FormStructure> submitted_form(new FormStructure(form));
332 if (!ShouldUploadForm(*submitted_form))
345 submitted_form->UpdateFromCache(*cached_submitted_form);
346 if (submitted_form->IsAutofillable())
347 ImportFormData(*submitted_form);
    [all...]
autofill_manager.h 190 virtual void UploadFormData(const FormStructure& submitted_form);
192 // Logs quality metrics for the |submitted_form| and uploads the form data
195 const FormStructure* submitted_form,
287 void ImportFormData(const FormStructure& submitted_form);
autofill_manager_unittest.cc 402 const FormStructure* submitted_form,
411 submitted_form->field_count());
416 base::UTF16ToUTF8(submitted_form->field(i)->value).c_str()));
418 submitted_form->field(i)->possible_types();
430 AutofillManager::UploadFormDataAsyncCallback(submitted_form,
443 virtual void UploadFormData(const FormStructure& submitted_form) OVERRIDE {
444 submitted_form_signature_ = submitted_form.FormSignature();
    [all...]
autofill_metrics_unittest.cc 211 const FormStructure* submitted_form,
217 AutofillManager::UploadFormDataAsyncCallback(submitted_form,
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 655 scoped_ptr<PasswordForm> submitted_form = CreatePasswordForm(form); local
662 if (submitted_form) {
665 *submitted_form);
668 submitted_form->action == provisionally_saved_forms_[frame]->action) {
671 submitted_form->password_value =
673 submitted_form->new_password_value =
682 *submitted_form));
    [all...]

Completed in 187 milliseconds