/external/chromium_org/components/autofill/core/browser/ |
autofill_driver.h | 18 class FormStructure; 56 const std::vector<FormStructure*>& forms) = 0;
|
form_structure.h | 47 // FormStructure stores a single HTML form together with the values entered 49 class FormStructure { 51 FormStructure(const FormData& form, 53 virtual ~FormStructure(); 59 // Encodes the XML upload request from this FormStructure. 64 // Encodes a XML block contains autofill field type from this FormStructure. 76 static bool EncodeQueryRequest(const std::vector<FormStructure*>& forms, 84 const std::vector<FormStructure*>& forms, 91 const std::vector<FormStructure*>& form_structures, 120 void UpdateFromCache(const FormStructure& cached_form) [all...] |
autofill_manager.h | 111 const std::vector<FormStructure*>& GetFormStructures(); 118 const base::Callback<void(const FormStructure*, 197 virtual void UploadFormData(const FormStructure& submitted_form); 202 const FormStructure* submitted_form, 223 ScopedVector<FormStructure>* form_structures() { return &form_structures_; } 242 void ReturnAutocompleteData(const FormStructure* result, 262 FormStructure** form_structure) const WARN_UNUSED_RESULT; 270 FormStructure** form_structure, 278 const FormStructure* cached_form, 279 FormStructure** updated_form) WARN_UNUSED_RESULT [all...] |
test_autofill_driver.cc | 31 const std::vector<FormStructure*>& forms) {
|
test_autofill_driver.h | 33 const std::vector<FormStructure*>& forms) OVERRIDE;
|
form_structure.cc | 327 FormStructure::FormStructure(const FormData& form, 376 FormStructure::~FormStructure() {} 378 void FormStructure::DetermineHeuristicTypes( 413 bool FormStructure::EncodeUploadRequest( 446 if (!EncodeFormRequest(FormStructure::UPLOAD, &autofill_request_xml)) 459 bool FormStructure::EncodeFieldAssignments( 470 if (!EncodeFormRequest(FormStructure::FIELD_ASSIGNMENTS, 482 bool FormStructure::EncodeQueryRequest [all...] |
form_structure_unittest.cc | 62 return FormStructure::Hash64Bit(str); 67 scoped_ptr<FormStructure> form_structure; 95 form_structure.reset(new FormStructure(form, std::string())); 99 form_structure.reset(new FormStructure(form, "http://fake_url")); 104 scoped_ptr<FormStructure> form_structure; 130 form_structure.reset(new FormStructure(form, std::string())); 141 form_structure.reset(new FormStructure(form, std::string())); 150 form_structure.reset(new FormStructure(form, "http://fake_url")); 159 FormStructure form_structure(form, std::string()); 165 scoped_ptr<FormStructure> form_structure [all...] |
autofill_download.h | 32 class FormStructure; 73 bool StartQueryRequest(const std::vector<FormStructure*>& forms, 83 bool StartUploadRequest(const FormStructure& form,
|
autofill_manager.cc | 117 bool SectionIsAutofilled(const FormStructure& form_structure, 131 bool FormIsHTTPS(const FormStructure& form) { 144 FormStructure* submitted_form) { 172 bool HasServerSpecifiedFieldTypes(const FormStructure& form_structure) { 265 scoped_ptr<FormStructure> submitted_form( 266 new FormStructure(form, GetAutocheckoutURLPrefix())); 274 FormStructure* cached_submitted_form; 308 FormStructure* raw_submitted_form = submitted_form.get(); 375 FormStructure* form_structure = NULL; 421 FormStructure* form_structure = NULL [all...] |
autofill_manager_delegate.h | 35 class FormStructure; 111 const base::Callback<void(const FormStructure*,
|
/external/chromium/chrome/browser/autofill/ |
form_structure.h | 36 // FormStructure stores a single HTML form together with the values entered 38 class FormStructure { 40 explicit FormStructure(const webkit_glue::FormData& form); 41 virtual ~FormStructure(); 47 // Encodes the XML upload request from this FormStructure. 55 static bool EncodeQueryRequest(const ScopedVector<FormStructure>& forms, 62 const std::vector<FormStructure*>& forms, 87 void UpdateFromCache(const FormStructure& cached_form); 176 DISALLOW_COPY_AND_ASSIGN(FormStructure);
|
form_structure_browsertest.cc | 45 std::string FormStructuresToString(const std::vector<FormStructure*>& forms); 65 std::vector<FormStructure*> forms = autofill_manager->form_structures_.get(); 70 const std::vector<FormStructure*>& forms) { 72 for (std::vector<FormStructure*>::const_iterator iter = forms.begin();
|
form_structure.cc | 52 FormStructure::FormStructure(const FormData& form) 88 FormStructure::~FormStructure() {} 90 void FormStructure::DetermineHeuristicTypes() { 121 bool FormStructure::EncodeUploadRequest(bool autofill_used, 142 if (!EncodeFormRequest(FormStructure::UPLOAD, &autofill_request_xml)) 153 bool FormStructure::EncodeQueryRequest(const ScopedVector<FormStructure>& forms, 173 for (ScopedVector<FormStructure>::const_iterator it = forms.begin() [all...] |
form_structure_unittest.cc | 45 return FormStructure::Hash64Bit(str); 72 FormStructure form_structure(form); 105 FormStructure form_structure(form); 116 FormStructure form_structure(form); 122 scoped_ptr<FormStructure> form_structure; 145 form_structure.reset(new FormStructure(form)); 162 form_structure.reset(new FormStructure(form)); 173 form_structure.reset(new FormStructure(form)); 180 form_structure.reset(new FormStructure(form)); 188 form_structure.reset(new FormStructure(form)) [all...] |
autofill_download.h | 25 class FormStructure; 75 bool StartQueryRequest(const ScopedVector<FormStructure>& forms, 84 bool StartUploadRequest(const FormStructure& form, bool form_was_matched);
|
autofill_manager.h | 97 void ImportFormData(const FormStructure& submitted_form); 100 void UploadFormData(const FormStructure& submitted_form); 141 ScopedVector<FormStructure>* form_structures() { return &form_structures_; } 185 FormStructure** form_structure) const WARN_UNUSED_RESULT; 193 FormStructure** form_structure, 199 void GetProfileSuggestions(FormStructure* form, 209 void GetCreditCardSuggestions(FormStructure* form, 243 void DeterminePossibleFieldTypesForUpload(FormStructure* submitted_form); 271 ScopedVector<FormStructure> form_structures_;
|
form_field.h | 16 class FormStructure; 154 explicit FormFieldSet(FormStructure* form); 164 bool CheckECML(FormStructure* fields);
|
personal_data_manager_unittest.cc | 544 FormStructure form_structure(form); 546 std::vector<const FormStructure*> forms; 591 FormStructure form_structure(form); 593 std::vector<const FormStructure*> forms; 621 FormStructure form_structure(form); 623 std::vector<const FormStructure*> forms; 674 FormStructure form_structure(form); 676 std::vector<const FormStructure*> forms; 777 FormStructure form_structure1(form1); 779 std::vector<const FormStructure*> forms [all...] |
autofill_manager.cc | 112 void FindSectionBounds(const FormStructure& form, 187 bool SectionIsAutofilled(const FormStructure* form_structure, 226 bool FormIsHTTPS(FormStructure* form) { 325 FormStructure submitted_form(form); 333 FormStructure* cached_submitted_form; 380 FormStructure* form_structure = NULL; 488 FormStructure* form_structure = NULL; 655 FormStructure::ParseQueryResponse(heuristic_xml, 682 FormStructure* submitted_form) { 693 void AutofillManager::ImportFormData(const FormStructure& submitted_form) [all...] |
autofill_download_unittest.cc | 171 FormStructure *form_structure = new FormStructure(form); 172 ScopedVector<FormStructure> form_structures; 200 form_structure = new FormStructure(form); 305 form_structure = new FormStructure(form); 390 FormStructure *form_structure = new FormStructure(form); 391 ScopedVector<FormStructure> form_structures0; 401 form_structure = new FormStructure(form); 402 ScopedVector<FormStructure> form_structures1 [all...] |
/external/chromium_org/chrome/browser/ui/android/autofill/ |
autofill_dialog_controller_android.h | 34 const base::Callback<void(const FormStructure*, 74 const base::Callback<void(const FormStructure*, 110 FormStructure form_structure_; 121 base::Callback<void(const FormStructure*, const std::string&)> callback_;
|
/external/chromium_org/chrome/browser/ui/autofill/ |
autofill_dialog_controller.cc | 19 const base::Callback<void(const FormStructure*,
|
autofill_dialog_controller.h | 40 const base::Callback<void(const FormStructure*,
|
/external/chromium_org/components/autofill/content/browser/ |
autocheckout_manager.h | 38 class FormStructure; 100 void ReturnAutocheckoutData(const FormStructure* result,
|
autofill_driver_impl_unittest.cc | 179 FormStructure form_structure(form, std::string()); 180 std::vector<FormStructure*> forms(1, &form_structure); 191 FormStructure form_structure(form, std::string()); 192 std::vector<FormStructure*> forms(1, &form_structure); 194 FormStructure::GetFieldTypePredictions(forms, &expected_type_predictions);
|