Searched defs:profile_info (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/sessions/
H A Dsession_service_unittest.cc426 ProfileInfoCache& profile_info = local
428 size_t profile_index = profile_info.GetIndexOfProfileWithPath(
431 profile_info.SetProfileSigninRequiredAtIndex(profile_index, true);
H A Dsession_service.cc391 ProfileInfoCache& profile_info = local
393 size_t profile_index = profile_info.GetIndexOfProfileWithPath(
396 profile_info.ProfileIsSigninRequiredAtIndex(profile_index);
/external/chromium_org/chrome/browser/thumbnails/
H A Dcontent_analysis_unittest.cc433 std::vector<float> profile_info; local
435 EXPECT_EQ(AutoSegmentPeaks(profile_info), std::numeric_limits<float>::max());
436 profile_info.resize(1000, 1.0f);
437 EXPECT_EQ(AutoSegmentPeaks(profile_info), 1.0f);
439 std::generate(profile_info.begin(), profile_info.end(), std::rand);
440 float threshold = AutoSegmentPeaks(profile_info);
446 profile_info.begin(),
447 profile_info.end(),
452 for (unsigned i = 0; i < profile_info
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_service_impl.cc135 ProfileInfoCache& profile_info = variable
137 size_t profile_index = profile_info.GetIndexOfProfileWithPath(profile_path);
139 profile_info.ProfileIsSupervisedAtIndex(profile_index);
H A Dapp_list_view_delegate.cc96 void PopulateUsers(const ProfileInfoCache& profile_info, argument
100 const size_t count = profile_info.GetNumberOfProfiles();
103 user.name = profile_info.GetNameOfProfileAtIndex(i);
104 user.email = profile_info.GetUserNameOfProfileAtIndex(i);
105 user.profile_path = profile_info.GetPathOfProfileAtIndex(i);
/external/chromium_org/chrome/browser/ui/startup/
H A Dstartup_browser_creator.cc625 ProfileInfoCache& profile_info = local
627 size_t profile_index = profile_info.GetIndexOfProfileWithPath(
630 profile_info.ProfileIsSigninRequiredAtIndex(profile_index);
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dmanage_profile_handler.cc261 base::DictionaryValue profile_info; local
262 profile_info.SetString("name", cache.ChooseNameForNewProfile(icon_index));
263 profile_info.SetString("iconURL",
267 "ManageProfileOverlay.receiveNewProfileDefaults", profile_info);
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager.cc555 ProfileInfo* profile_info = GetProfileInfoByPath(path); local
556 return profile_info ? profile_info->profile.get() : NULL;
1051 ProfileInfo* profile_info = GetProfileInfoByPath(default_profile_dir); local
1054 if (profile_info && !profile_info->created)

Completed in 2548 milliseconds