Home
last modified time | relevance | path

Searched refs:TopSitesCache (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/history/
Dtop_sites_cache.cc12 TopSitesCache::TopSitesCache() { in TopSitesCache() function in history::TopSitesCache
15 TopSitesCache::~TopSitesCache() { in ~TopSitesCache()
18 void TopSitesCache::SetTopSites(const MostVisitedURLList& top_sites) { in SetTopSites()
23 void TopSitesCache::SetThumbnails(const URLToImagesMap& images) { in SetThumbnails()
27 void TopSitesCache::SetPageThumbnail(const GURL& url, in SetPageThumbnail()
35 Images* TopSitesCache::GetImage(const GURL& url) { in GetImage()
39 bool TopSitesCache::GetPageThumbnail(const GURL& url, in GetPageThumbnail()
50 bool TopSitesCache::GetPageThumbnailScore(const GURL& url, in GetPageThumbnailScore()
61 GURL TopSitesCache::GetCanonicalURL(const GURL& url) { in GetCanonicalURL()
62 CanonicalURLs::iterator i = TopSitesCache::GetCanonicalURLsIterator(url); in GetCanonicalURL()
[all …]
Dtop_sites_cache.h21 class TopSitesCache {
23 TopSitesCache();
24 ~TopSitesCache();
107 DISALLOW_COPY_AND_ASSIGN(TopSitesCache);
Dtop_sites.h35 class TopSitesCache; variable
311 scoped_ptr<TopSitesCache> cache_;
316 scoped_ptr<TopSitesCache> thread_safe_cache_;
Dtop_sites.cc132 cache_(new TopSitesCache()), in TopSites()
133 thread_safe_cache_(new TopSitesCache()), in TopSites()