Home
last modified time | relevance | path

Searched refs:top_sites_ (Results 1 – 10 of 10) sorted by relevance

/external/chromium/chrome/browser/ui/webui/
Dthumbnail_source.cc18 top_sites_(profile->GetTopSites()) { in ThumbnailSource()
28 if (top_sites_->GetPageThumbnail(GURL(path), &data)) { in StartDataRequest()
45 return top_sites_.get() ? NULL : DataSource::MessageLoopForRequestPath(path); in MessageLoopForRequestPath()
Dthumbnail_source.h49 scoped_refptr<history::TopSites> top_sites_; variable
/external/chromium/chrome/browser/history/
Dtop_sites_cache.cc19 top_sites_ = top_sites; in SetTopSites()
90 for (size_t i = 0; i < top_sites_.size(); i++) in GenerateCanonicalURLs()
91 StoreRedirectChain(top_sites_[i].redirects, i); in GenerateCanonicalURLs()
104 entry.first = &(top_sites_[destination]); in StoreRedirectChain()
Dtop_sites_cache.h28 const MostVisitedURLList& top_sites() const { return top_sites_; } in top_sites()
98 MostVisitedURLList top_sites_; variable
Dexpire_history_backend_unittest.cc114 scoped_refptr<TopSites> top_sites_; member in history::ExpireHistoryTest
154 top_sites_ = profile_.GetTopSites(); in SetUp()
158 top_sites_ = NULL; in TearDown()
235 top_sites_->SetPageThumbnail(url_row1.url(), *thumbnail, score); in AddExampleData()
236 top_sites_->SetPageThumbnail(url_row2.url(), *thumbnail, score); in AddExampleData()
237 top_sites_->SetPageThumbnail(url_row3.url(), *thumbnail, score); in AddExampleData()
338 return top_sites_->GetPageThumbnail(url, &data); in HasThumbnail()
Dtop_sites.cc79 : top_sites_(top_sites), in LoadThumbnailsFromHistoryTask()
106 top_sites_->FinishHistoryMigration(data_); in DoneRunOnMainThread()
118 scoped_refptr<TopSites> top_sites_; member in history::__anon1ee561b60111::LoadThumbnailsFromHistoryTask
/external/chromium/chrome/browser/profiles/
Dprofile_impl.cc625 if (top_sites_.get()) in ~ProfileImpl()
626 top_sites_->Shutdown(); in ~ProfileImpl()
1230 if (!top_sites_.get()) { in GetTopSites()
1231 top_sites_ = new history::TopSites(this); in GetTopSites()
1232 top_sites_->Init(GetPath().Append(chrome::kTopSitesFilename)); in GetTopSites()
1234 return top_sites_; in GetTopSites()
1238 return top_sites_; in GetTopSitesWithoutCreating()
Dprofile_impl.h297 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. variable
/external/chromium/chrome/browser/automation/
Dautomation_provider_observers.cc1891 top_sites_ = automation_->profile()->GetTopSites(); in NTPInfoObserver()
1892 if (!top_sites_) { in NTPInfoObserver()
1951 Source<history::TopSites>(top_sites_)); in NTPInfoObserver()
1952 if (top_sites_->loaded()) { in NTPInfoObserver()
1970 top_sites_->GetMostVisitedURLs( in Observe()
1978 request_ = top_sites_->StartQueryForMostVisited(); in OnTopSitesLoaded()
1996 dict->SetBoolean("is_pinned", top_sites_->IsURLPinned(visited.url)); in OnTopSitesReceived()
Dautomation_provider_observers.h1134 history::TopSites* top_sites_; variable