Home | History | Annotate | Download | only in webdata

Lines Matching full:guid

416 void WebDataService::RemoveAutofillProfile(const std::string& guid) {
419 this, GetNextRequestHandle(), NULL, guid);
468 void WebDataService::RemoveCreditCard(const std::string& guid) {
471 this, GetNextRequestHandle(), NULL, guid);
1023 // Send GUID-based notification.
1025 profile.guid(), &profile);
1044 if (!db_->GetAutofillTable()->GetAutofillProfile(profile.guid(),
1057 // Send GUID-based notification.
1059 profile.guid(), &profile);
1072 std::string guid = request->GetArgument();
1075 if (!db_->GetAutofillTable()->GetAutofillProfile(guid, &profile)) {
1081 if (!db_->GetAutofillTable()->RemoveAutofillProfile(guid)) {
1087 // Send GUID-based notification.
1088 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL);
1123 // Send GUID-based notification.
1141 (*iter)->guid(), *iter);
1171 // Send GUID-based notification.
1173 credit_card.guid(), &credit_card);
1191 if (!db_->GetAutofillTable()->GetCreditCard(credit_card.guid(),
1204 // Send GUID-based notification.
1206 credit_card.guid(), &credit_card);
1219 std::string guid = request->GetArgument();
1220 if (!db_->GetAutofillTable()->RemoveCreditCard(guid)) {
1226 // Send GUID-based notification.
1228 guid, NULL);