Home
last modified time | relevance | path

Searched refs:gaia_pictures_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/profiles/
Dprofile_info_cache.cc202 gaia_pictures_.begin(), gaia_pictures_.end()); in ~ProfileInfoCache()
376 if (gaia_pictures_.count(key)) { in GetGAIAPictureOfProfileAtIndex()
377 if (gaia_pictures_[key]->IsEmpty()) in GetGAIAPictureOfProfileAtIndex()
379 return gaia_pictures_[key]; in GetGAIAPictureOfProfileAtIndex()
433 delete gaia_pictures_[key]; in OnGAIAPictureLoaded()
434 gaia_pictures_[key] = *image; in OnGAIAPictureLoaded()
437 gaia_pictures_[key] = new gfx::Image(); in OnGAIAPictureLoaded()
625 std::map<std::string, gfx::Image*>::iterator it = gaia_pictures_.find(key); in SetGAIAPictureOfProfileAtIndex()
626 if (it != gaia_pictures_.end()) { in SetGAIAPictureOfProfileAtIndex()
628 gaia_pictures_.erase(it); in SetGAIAPictureOfProfileAtIndex()
[all …]
Dprofile_info_cache.h192 mutable std::map<std::string, gfx::Image*> gaia_pictures_; variable