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

  /external/chromium_org/chrome/browser/sync/test/integration/
search_engines_helper.h 22 TemplateURLService* GetServiceForBrowserContext(int profile_index);
29 bool ServiceMatchesVerifier(int profile_index);
46 // Add a search engine based on a seed to the service at index |profile_index|
48 void AddSearchEngine(int profile_index, int seed);
50 // Retrieves a search engine from the service at index |profile_index| with
53 void EditSearchEngine(int profile_index,
59 // Deletes a search engine from the service at index |profile_index| which was
61 void DeleteSearchEngineBySeed(int profile_index, int seed);
64 // |profile_index| to be the new default. Does the same to the verifier, if it
66 void ChangeDefaultSearchProvider(int profile_index, int seed)
    [all...]
search_engines_helper.cc 118 TemplateURLService* GetServiceForBrowserContext(int profile_index) {
120 test()->GetProfile(profile_index));
127 bool ServiceMatchesVerifier(int profile_index) {
129 TemplateURLService* other = GetServiceForBrowserContext(profile_index);
209 void AddSearchEngine(int profile_index, int seed) {
210 Profile* profile = test()->GetProfile(profile_index);
217 void EditSearchEngine(int profile_index,
223 TemplateURLService* service = GetServiceForBrowserContext(profile_index);
238 void DeleteSearchEngineBySeed(int profile_index, int seed) {
239 TemplateURLService* service = GetServiceForBrowserContext(profile_index);
    [all...]
  /external/chromium_org/chrome/browser/profiles/
gaia_info_update_service.cc 116 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath()); local
117 if (profile_index == std::string::npos)
120 cache.SetGAIANameOfProfileAtIndex(profile_index, full_name);
122 profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath());
123 if (profile_index == std::string::npos)
129 cache.SetGAIAPictureOfProfileAtIndex(profile_index, &gfx_image);
131 cache.SetGAIAPictureOfProfileAtIndex(profile_index, NULL);
137 if (!cache.GetHasMigratedToGAIAInfoOfProfileAtIndex(profile_index)) {
138 cache.SetHasMigratedToGAIAInfoOfProfileAtIndex(profile_index, true);
144 cache.SetIsUsingGAIANameOfProfileAtIndex(profile_index, true)
165 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath()); local
    [all...]
profile_shortcut_manager_win.cc 773 size_t profile_index = cache->GetIndexOfProfileWithPath(profile_path); local
774 if (profile_index == std::string::npos)
779 cache->GetShortcutNameOfProfileAtIndex(profile_index);
791 params.profile_name = cache->GetNameOfProfileAtIndex(profile_index);
    [all...]
profile_shortcut_manager_unittest_win.cc 235 const size_t profile_index = local
237 ASSERT_NE(std::string::npos, profile_index);
238 ASSERT_NE(profile_info_cache_->GetNameOfProfileAtIndex(profile_index),
240 profile_info_cache_->SetNameOfProfileAtIndex(profile_index,
    [all...]
profile_info_cache.cc 243 size_t profile_index = GetIndexOfProfileWithPath(profile_path); local
244 if (profile_index == std::string::npos) {
248 string16 name = GetNameOfProfileAtIndex(profile_index);
profile_manager_unittest.cc 398 size_t profile_index = cache.GetIndexOfProfileWithPath(dest_path); local
402 UTF16ToUTF8(cache.GetNameOfProfileAtIndex(profile_index)));
404 cache.GetAvatarIconIndexOfProfileAtIndex(profile_index));
  /external/chromium_org/chrome/browser/ui/gtk/
avatar_menu_bubble_gtk.h 44 virtual void OpenProfile(size_t profile_index) OVERRIDE;
45 virtual void EditProfile(size_t profile_index) OVERRIDE;
avatar_menu_item_gtk.h 27 // Open a new browser window using the profile at |profile_index|.
28 virtual void OpenProfile(size_t profile_index) = 0;
30 // Edit the profile given by |profile_index|.
31 virtual void EditProfile(size_t profile_index) = 0;
avatar_menu_bubble_gtk.cc 88 void AvatarMenuBubbleGtk::OpenProfile(size_t profile_index) {
94 avatar_menu_model_->SwitchToProfile(profile_index,
99 void AvatarMenuBubbleGtk::EditProfile(size_t profile_index) {
102 avatar_menu_model_->EditProfile(profile_index);
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_handler.cc 281 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
282 if (profile_index != std::string::npos) {
284 cache.GetGAIAPictureOfProfileAtIndex(profile_index);
324 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
325 if (profile_index == std::string::npos)
339 cache.IsUsingGAIAPictureOfProfileAtIndex(profile_index);
343 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, true);
356 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, false);
367 if (new_profile_name == cache.GetGAIANameOfProfileAtIndex(profile_index)) {
371 cache.SetIsUsingGAIANameOfProfileAtIndex(profile_index, true)
430 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
452 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_file_path); local
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_view_delegate.cc 166 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath()); local
167 if (profile_index != std::string::npos)
168 return cache.GetNameOfProfileAtIndex(profile_index);
176 size_t profile_index = cache.GetIndexOfProfileWithPath(profile_->GetPath()); local
177 if (profile_index != std::string::npos)
178 return cache.GetUserNameOfProfileAtIndex(profile_index);
  /external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_login_handler.cc 213 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
214 if (profile_index != std::string::npos) {
219 string16 name = cache.GetGAIANameOfProfileAtIndex(profile_index);
223 cache.GetGAIAPictureOfProfileAtIndex(profile_index);
  /external/chromium_org/chrome/browser/background/
background_mode_manager.cc 376 size_t profile_index = profile_cache_->GetIndexOfProfileWithPath(
378 if (profile_index != std::string::npos) {
380 profile_index, GetBackgroundAppCountForProfile(profile) != 0);
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
builtin_function.cpp     [all...]
  /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/components/autofill/core/browser/
autofill_profile.cc 649 size_t profile_index = it->second.front(); local
650 (*created_labels)[profile_index] = label;
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp     [all...]

Completed in 559 milliseconds