Home
last modified time | relevance | path

Searched refs:new_profile (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/chrome/browser/ui/webui/options/
Dcreate_profile_handler.cc192 Profile* new_profile) { in RegisterManagedUser() argument
194 new_profile->GetPath().value()); in RegisterManagedUser()
197 ManagedUserServiceFactory::GetForProfile(new_profile); in RegisterManagedUser()
210 new_profile)); in RegisterManagedUser()
306 Profile* new_profile = manager->GetProfileByPath(profile_path_being_created_); in CancelProfileRegistration() local
307 if (!new_profile) in CancelProfileRegistration()
313 if (!new_profile->IsManaged()) in CancelProfileRegistration()
332 helper::DeleteProfileAtPath(new_profile->GetPath(), web_ui()); in CancelProfileRegistration()
Dcreate_profile_handler.h97 Profile* new_profile);
/external/chromium_org/chrome/browser/webdata/
Dautofill_profile_syncable_service.cc464 AutofillProfile* new_profile = new AutofillProfile( in CreateOrUpdateProfile() local
466 OverwriteProfileWithServerData(autofill_specifics, new_profile, app_locale_); in CreateOrUpdateProfile()
473 if (local_profile->Compare(*new_profile) == 0) { in CreateOrUpdateProfile()
476 if (local_profile->IsVerified() && !new_profile->IsVerified()) { in CreateOrUpdateProfile()
477 new_profile->set_origin(local_profile->origin()); in CreateOrUpdateProfile()
478 bundle->profiles_to_sync_back.push_back(new_profile); in CreateOrUpdateProfile()
486 << "New guid " << new_profile->guid() in CreateOrUpdateProfile()
491 !new_profile->IsVerified() && in CreateOrUpdateProfile()
493 local_profile->PrimaryValue() == new_profile->PrimaryValue()) { in CreateOrUpdateProfile()
497 std::make_pair(local_profile->guid(), new_profile)); in CreateOrUpdateProfile()
[all …]
/external/chromium_org/chrome/browser/ui/sync/
Done_click_signin_sync_starter.cc242 Profile* new_profile, in CompleteInitForNewProfile() argument
244 DCHECK_NE(profile_, new_profile); in CompleteInitForNewProfile()
262 SigninManagerFactory::GetForProfile(new_profile); in CompleteInitForNewProfile()
273 Initialize(new_profile, NULL); in CompleteInitForNewProfile()
274 DCHECK_EQ(profile_, new_profile); in CompleteInitForNewProfile()
288 new_profile, in CompleteInitForNewProfile()
/external/chromium_org/components/autofill/core/browser/
Dpersonal_data_manager.cc709 const AutofillProfile& new_profile, in MergeProfile() argument
717 std::string guid = new_profile.guid(); in MergeProfile()
726 !new_profile.PrimaryValue().empty() && in MergeProfile()
728 StringToLowerASCII(new_profile.PrimaryValue())) { in MergeProfile()
735 if (!existing_profile->IsVerified() || new_profile.IsVerified()) in MergeProfile()
736 existing_profile->OverwriteWithOrAddTo(new_profile, app_locale); in MergeProfile()
743 merged_profiles->push_back(new_profile); in MergeProfile()
Dpersonal_data_manager.h182 const AutofillProfile& new_profile,
/external/chromium_org/chrome/browser/prefs/
Dpref_service_browsertest.cc61 explicit PreferenceServiceTest(bool new_profile) : new_profile_(new_profile) { in PreferenceServiceTest() argument
/external/chromium/chrome/browser/webdata/
Dautofill_table.cc995 AutofillProfile new_profile(profile); in UpdateAutofillProfile() local
999 values[0] = new_profile.GetInfo(NAME_FULL); in UpdateAutofillProfile()
1000 new_profile.SetMultiInfo(NAME_FULL, values); in UpdateAutofillProfile()
1003 values[0] = new_profile.GetInfo(EMAIL_ADDRESS); in UpdateAutofillProfile()
1004 new_profile.SetMultiInfo(EMAIL_ADDRESS, values); in UpdateAutofillProfile()
1007 values[0] = new_profile.GetInfo(PHONE_HOME_WHOLE_NUMBER); in UpdateAutofillProfile()
1008 new_profile.SetMultiInfo(PHONE_HOME_WHOLE_NUMBER, values); in UpdateAutofillProfile()
1011 values[0] = new_profile.GetInfo(PHONE_FAX_WHOLE_NUMBER); in UpdateAutofillProfile()
1012 new_profile.SetMultiInfo(PHONE_FAX_WHOLE_NUMBER, values); in UpdateAutofillProfile()
1014 return UpdateAutofillProfileMulti(new_profile); in UpdateAutofillProfile()
/external/chromium_org/chrome/test/functional/
Dmultiprofile.py178 new_profile = multi_profile['profiles'][1]
179 self.assertTrue(new_profile['name'])
/external/chromium_org/chrome/browser/ui/autofill/
Dautofill_dialog_controller_unittest.cc908 AutofillProfile new_profile(test::GetVerifiedProfile2()); in TEST_F() local
910 FillInputs(SECTION_SHIPPING, new_profile); in TEST_F()
916 new_profile.set_guid( in TEST_F()
925 controller()->GetTestingManager()->AddTestingProfile(&new_profile); in TEST_F()