Lines Matching full:profile
396 void WebDataService::AddAutofillProfile(const AutofillProfile& profile) {
399 this, GetNextRequestHandle(), NULL, profile);
406 void WebDataService::UpdateAutofillProfile(const AutofillProfile& profile) {
409 this, GetNextRequestHandle(), NULL, profile);
1016 const AutofillProfile& profile = request->GetArgument();
1017 if (!db_->GetAutofillTable()->AddAutofillProfile(profile)) {
1025 profile.guid(), &profile);
1038 const AutofillProfile& profile = request->GetArgument();
1040 // Only perform the update if the profile exists. It is currently
1041 // valid to try to update a missing profile. We simply drop the write and
1044 if (!db_->GetAutofillTable()->GetAutofillProfile(profile.guid(),
1051 if (!db_->GetAutofillTable()->UpdateAutofillProfileMulti(profile)) {
1059 profile.guid(), &profile);
1074 AutofillProfile* profile = NULL;
1075 if (!db_->GetAutofillTable()->GetAutofillProfile(guid, &profile)) {
1079 scoped_ptr<AutofillProfile> scoped_profile(profile);
1188 // It is currently valid to try to update a missing profile. We simply drop