Home | History | Annotate | Download | only in webdata

Lines Matching defs:new_profile

507   AutofillProfile* new_profile = new AutofillProfile(
509 OverwriteProfileWithServerData(autofill_specifics, new_profile, app_locale_);
518 if (local_profile->Compare(*new_profile) == 0) {
521 if (local_profile->IsVerified() && !new_profile->IsVerified()) {
522 new_profile->set_origin(local_profile->origin());
523 bundle->profiles_to_sync_back.push_back(new_profile);
531 << "New guid " << new_profile->guid()
536 !new_profile->IsVerified() &&
538 local_profile->PrimaryValue() == new_profile->PrimaryValue()) {
542 std::make_pair(local_profile->guid(), new_profile));
545 profiles_.push_back(new_profile);
546 bundle->profiles_to_add.push_back(new_profile);
547 return profile_map->insert(std::make_pair(new_profile->guid(),
548 new_profile)).first;