Searched refs:new_profile (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/chrome/browser/webdata/
H A Dautofill_profile_syncable_service.cc464 AutofillProfile* new_profile = new AutofillProfile( local
466 OverwriteProfileWithServerData(autofill_specifics, new_profile, app_locale_);
473 if (local_profile->Compare(*new_profile) == 0) {
476 if (local_profile->IsVerified() && !new_profile->IsVerified()) {
477 new_profile->set_origin(local_profile->origin());
478 bundle->profiles_to_sync_back.push_back(new_profile);
486 << "New guid " << new_profile->guid()
491 !new_profile->IsVerified() &&
493 local_profile->PrimaryValue() == new_profile->PrimaryValue()) {
497 std::make_pair(local_profile->guid(), new_profile));
[all...]
/external/chromium_org/chrome/browser/ui/sync/
H A Done_click_signin_sync_starter.cc236 Profile* new_profile,
238 DCHECK_NE(profile_, new_profile);
256 SigninManagerFactory::GetForProfile(new_profile);
266 Initialize(new_profile, NULL);
267 DCHECK_EQ(profile_, new_profile);
281 new_profile,
234 CompleteInitForNewProfile( chrome::HostDesktopType desktop_type, Profile* new_profile, Profile::CreateStatus status) argument
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_service_impl.h44 void SetProfile(Profile* new_profile);
H A Dapp_list_service_impl.cc204 void AppListServiceImpl::SetProfile(Profile* new_profile) { argument
206 profile_ = new_profile;
/external/chromium_org/chrome/browser/prefs/
H A Dpref_service_browsertest.cc61 explicit PreferenceServiceTest(bool new_profile) : new_profile_(new_profile) { argument
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dbrowser_options_handler.h160 Profile* new_profile,
H A Dbrowser_options_handler.cc1169 Profile* new_profile,
1171 DCHECK(profile_path_being_created_ == new_profile->GetPath());
1176 ManagedUserServiceFactory::GetForProfile(new_profile);
1295 Profile* new_profile = manager->GetProfileByPath(profile_path_being_created_); local
1296 if (!new_profile)
1302 if (!new_profile->IsManaged())
1318 DeleteProfileAtPath(new_profile->GetPath());
1166 RegisterManagedUser( const ProfileManager::CreateCallback& callback, const std::string& managed_user_id, Profile* new_profile, Profile::CreateStatus status) argument
/external/chromium_org/chrome/test/functional/
H A Dmultiprofile.py178 new_profile = multi_profile['profiles'][1]
179 self.assertTrue(new_profile['name'])
/external/chromium_org/components/autofill/core/browser/
H A Dpersonal_data_manager.cc730 const AutofillProfile& new_profile,
746 !new_profile.PrimaryValue().empty() &&
748 StringToLowerASCII(new_profile.PrimaryValue())) {
754 if (!existing_profile->IsVerified() || new_profile.IsVerified())
755 existing_profile->OverwriteWithOrAddTo(new_profile, app_locale);
762 merged_profiles->push_back(new_profile);
729 MergeProfile( const AutofillProfile& new_profile, const std::vector<AutofillProfile*>& existing_profiles, const std::string& app_locale, std::vector<AutofillProfile>* merged_profiles) argument
H A Dpersonal_data_manager.h170 // Merges |new_profile| into one of the |existing_profiles| if possible;
171 // otherwise appends |new_profile| to the end of that list. Fills
174 const AutofillProfile& new_profile,
/external/chromium/chrome/browser/webdata/
H A Dautofill_table.cc995 AutofillProfile new_profile(profile);
999 values[0] = new_profile.GetInfo(NAME_FULL);
1000 new_profile.SetMultiInfo(NAME_FULL, values);
1003 values[0] = new_profile.GetInfo(EMAIL_ADDRESS);
1004 new_profile.SetMultiInfo(EMAIL_ADDRESS, values);
1007 values[0] = new_profile.GetInfo(PHONE_HOME_WHOLE_NUMBER);
1008 new_profile.SetMultiInfo(PHONE_HOME_WHOLE_NUMBER, values);
1011 values[0] = new_profile.GetInfo(PHONE_FAX_WHOLE_NUMBER);
1012 new_profile.SetMultiInfo(PHONE_FAX_WHOLE_NUMBER, values);
1014 return UpdateAutofillProfileMulti(new_profile);
[all...]

Completed in 174 milliseconds