HomeSort by relevance Sort by last modified time
    Searched defs:profile_index (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/managed_mode/
managed_user_service_browsertest.cc 48 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
50 UTF16ToUTF8(cache.GetNameOfProfileAtIndex(profile_index)));
76 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
77 EXPECT_EQ(name, UTF16ToUTF8(cache.GetNameOfProfileAtIndex(profile_index)));
85 profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath());
87 UTF16ToUTF8(cache.GetNameOfProfileAtIndex(profile_index)));
93 profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath());
95 UTF16ToUTF8(cache.GetNameOfProfileAtIndex(profile_index)));
  /external/chromium_org/chrome/browser/profiles/
profiles_state.cc 86 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
89 cache.GetGAIAGivenNameOfProfileAtIndex(profile_index)) ||
90 (new_profile_name == cache.GetGAIANameOfProfileAtIndex(profile_index))) {
94 cache.SetIsUsingGAIANameOfProfileAtIndex(profile_index, true);
102 profile_index = cache.GetIndexOfProfileWithPath(profile_file_path);
103 if (profile_index == std::string::npos)
106 cache.SetIsUsingGAIANameOfProfileAtIndex(profile_index, false);
avatar_menu.h 38 Item(size_t menu_index, size_t profile_index, const gfx::Image& icon);
69 size_t profile_index; member in struct:AvatarMenu::Item
gaia_info_update_service.cc 117 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath()); local
118 if (profile_index == std::string::npos)
121 cache.SetGAIANameOfProfileAtIndex(profile_index, full_name);
122 cache.SetGAIAGivenNameOfProfileAtIndex(profile_index, given_name);
125 profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath());
126 if (profile_index == std::string::npos)
132 cache.SetGAIAPictureOfProfileAtIndex(profile_index, &gfx_image);
134 cache.SetGAIAPictureOfProfileAtIndex(profile_index, NULL);
140 if (!cache.GetHasMigratedToGAIAInfoOfProfileAtIndex(profile_index)) {
141 cache.SetHasMigratedToGAIAInfoOfProfileAtIndex(profile_index, true)
168 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath()); local
    [all...]
avatar_menu.cc 71 size_t profile_index,
78 profile_index(profile_index) {
131 profile_info_->GetPathOfProfileAtIndex(item.profile_index);
148 size_t profile_index = profile_list_->GetItemAt(index).profile_index; local
151 profile_info_->GetPathOfProfileAtIndex(profile_index));
153 menu_actions_->EditProfile(profile, profile_index);
profile_manager_unittest.cc 399 size_t profile_index = cache.GetIndexOfProfileWithPath(dest_path); local
403 UTF16ToUTF8(cache.GetNameOfProfileAtIndex(profile_index)));
405 cache.GetAvatarIconIndexOfProfileAtIndex(profile_index));
    [all...]
profile_shortcut_manager_unittest_win.cc 238 const size_t profile_index = local
240 ASSERT_NE(std::string::npos, profile_index);
241 ASSERT_NE(profile_info_cache_->GetNameOfProfileAtIndex(profile_index),
243 profile_info_cache_->SetNameOfProfileAtIndex(profile_index,
    [all...]
profile_shortcut_manager_win.cc 723 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_path); local
724 DCHECK_LT(profile_index, cache.GetNumberOfProfiles());
729 shortcut_profile_name = cache.GetNameOfProfileAtIndex(profile_index);
805 size_t profile_index = cache->GetIndexOfProfileWithPath(profile_path); local
    [all...]
profile_info_cache.cc 246 size_t profile_index = GetIndexOfProfileWithPath(profile_path); local
247 if (profile_index == std::string::npos) {
251 base::string16 name = GetNameOfProfileAtIndex(profile_index);
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_service_impl.cc 132 size_t profile_index = profile_info.GetIndexOfProfileWithPath(profile_path); variable
133 return profile_info.ProfileIsManagedAtIndex(profile_index);
  /external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_login_handler.cc 209 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
210 if (profile_index != std::string::npos) {
215 base::string16 name = cache.GetGAIANameOfProfileAtIndex(profile_index);
219 cache.GetGAIAPictureOfProfileAtIndex(profile_index);
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_handler.cc 231 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
232 if (profile_index != std::string::npos) {
234 cache.GetGAIAPictureOfProfileAtIndex(profile_index);
274 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
275 if (profile_index == std::string::npos)
289 cache.IsUsingGAIAPictureOfProfileAtIndex(profile_index);
293 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, true);
306 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, false);
365 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
366 if (profile_index == std::string::npos
387 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/signin/
user_manager_screen_handler.cc 207 size_t profile_index = GetIndexOfProfileWithEmailAndName( local
209 if (profile_index >= info_cache.GetNumberOfProfiles()) {
213 if (!chrome::ValidateLocalAuthCredentials(profile_index, password)) {
224 info_cache.SetProfileSigninRequiredAtIndex(profile_index, false);
225 base::FilePath path = info_cache.GetPathOfProfileAtIndex(profile_index);
270 size_t profile_index = GetIndexOfProfileWithEmailAndName( local
273 if (profile_index >= info_cache.GetNumberOfProfiles()) {
283 if (info_cache.ProfileIsSigninRequiredAtIndex(profile_index))
286 base::FilePath path = info_cache.GetPathOfProfileAtIndex(profile_index);
  /external/chromium/chrome/browser/autofill/
autofill_profile.cc 368 size_t profile_index = it->second.front(); local
369 (*created_labels)[profile_index] = label;
  /external/chromium_org/chrome/browser/
chrome_browser_main.cc 364 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_path); local
366 if (cache.ProfileIsSigninRequiredAtIndex(profile_index))
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_profile.cc 603 size_t profile_index = it->second.front(); local
604 (*labels)[profile_index] = label;

Completed in 846 milliseconds