Home | History | Annotate | Download | only in autofill

Lines Matching full:guid

39 #include "chrome/common/guid.h"
502 DCHECK(!guid::IsValidGUID(cc_guid.first) ||
503 !guid::IsValidGUID(profile_guid.first));
507 if (guid::IsValidGUID(profile_guid.first)) {
510 if ((*iter)->guid() == profile_guid.first) {
520 if (guid::IsValidGUID(cc_guid.first)) {
523 if ((*iter)->guid() == cc_guid.first) {
862 GUIDPair(profile->guid(), i)));
901 GUIDPair(profile->guid(), j)));
949 unique_ids->push_back(PackGUIDs(GUIDPair(credit_card->guid(), 0),
1060 int AutofillManager::GUIDToID(const GUIDPair& guid) {
1063 if (!guid::IsValidGUID(guid.first))
1066 std::map<GUIDPair, int>::const_iterator iter = guid_id_map_.find(guid);
1068 guid_id_map_[guid] = last_id;
1069 id_guid_map_[last_id] = guid;