Home
last modified time | relevance | path

Searched refs:profile_guid (Results 1 – 5 of 5) sorted by relevance

/external/chromium/chrome/browser/autofill/
Dautofill_manager.cc500 GUIDPair profile_guid; in OnFillAutofillFormData() local
501 UnpackGUIDs(unique_id, &cc_guid, &profile_guid); in OnFillAutofillFormData()
503 !guid::IsValidGUID(profile_guid.first)); in OnFillAutofillFormData()
507 if (guid::IsValidGUID(profile_guid.first)) { in OnFillAutofillFormData()
510 if ((*iter)->guid() == profile_guid.first) { in OnFillAutofillFormData()
551 FillFormField(profile, field_type, profile_guid.second, &(*iter)); in OnFillAutofillFormData()
600 FillFormField(profile, field_type, profile_guid.second, in OnFillAutofillFormData()
1093 const GUIDPair& profile_guid) { argument
1095 int profile_id = GUIDToID(profile_guid);
1108 GUIDPair* profile_guid) { argument
[all …]
Dautofill_manager.h150 int PackGUIDs(const GUIDPair& cc_guid, const GUIDPair& profile_guid);
151 void UnpackGUIDs(int id, GUIDPair* cc_guid, GUIDPair* profile_guid);
/external/chromium_org/components/autofill/core/browser/
Dautofill_manager.cc819 GUIDPair profile_guid; in GetProfileOrCreditCard() local
820 UnpackGUIDs(unique_id, &credit_card_guid, &profile_guid); in GetProfileOrCreditCard()
822 !base::IsValidGUID(profile_guid.first)); in GetProfileOrCreditCard()
827 if (base::IsValidGUID(profile_guid.first)) { in GetProfileOrCreditCard()
828 *data_model = personal_data_->GetProfileByGUID(profile_guid.first); in GetProfileOrCreditCard()
829 *variant = profile_guid.second; in GetProfileOrCreditCard()
1068 const GUIDPair& profile_guid) const { in PackGUIDs()
1070 int profile_id = GUIDToID(profile_guid); in PackGUIDs()
1083 GUIDPair* profile_guid) const { in UnpackGUIDs()
1089 *profile_guid = IDToGUID(profile_id); in UnpackGUIDs()
Dautofill_manager.h194 const PersonalDataManager::GUIDPair& profile_guid) const;
197 PersonalDataManager::GUIDPair* profile_guid) const;
Dautofill_manager_unittest.cc721 int PackGUIDs(const GUIDPair& cc_guid, const GUIDPair& profile_guid) const { in PackGUIDs()
722 return autofill_manager_->PackGUIDs(cc_guid, profile_guid); in PackGUIDs()