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

  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_utils.cc 7 #include "chrome/browser/history/top_sites.h"
14 const history::TopSites& top_sites,
19 urls->insert(top_sites.GetCanonicalURLString(web_contents->GetURL()));
tab_strip_model_utils.h 21 const history::TopSites& top_sites,
  /external/chromium_org/chrome/browser/precache/
most_visited_urls_provider.cc 11 #include "chrome/browser/history/top_sites.h"
35 MostVisitedURLsProvider::MostVisitedURLsProvider(history::TopSites* top_sites)
36 : top_sites_(top_sites) {}
most_visited_urls_provider.h 22 explicit MostVisitedURLsProvider(history::TopSites* top_sites);
  /external/chromium_org/chrome/browser/history/
top_sites_impl_unittest.cc 64 void QueryTopSites(TopSitesImpl* top_sites, bool wait) {
65 QueryAllTopSites(top_sites, wait, false);
70 void QueryAllTopSites(TopSitesImpl* top_sites,
74 top_sites->GetMostVisitedURLs(
160 return top_sites()->GetPageThumbnail(url, false, &data) ?
192 top_sites()->backend_->DoEmptyRequest(
198 TopSitesImpl* top_sites() { function in class:history::TopSitesImplTest
209 return top_sites()->GetPrepopulatePages();
292 return top_sites()->cache_->GetCanonicalURL(url);
296 top_sites()->SetTopSites(new_top_sites)
    [all...]
top_sites_cache.h 45 // Set the top sites. In |top_sites| all forced URLs must appear before
47 void SetTopSites(const MostVisitedURLList& top_sites);
48 const MostVisitedURLList& top_sites() const { return top_sites_; } function in class:history::TopSitesCache
top_sites_impl.cc 225 filtered_urls = thread_safe_cache_->top_sites();
227 filtered_urls.assign(thread_safe_cache_->top_sites().begin() +
229 thread_safe_cache_->top_sites().end());
493 cache_->top_sites()[cache_->GetURLIndex(url)];
528 const MostVisitedURL& most_visited = cache_->top_sites()[index];
610 MostVisitedURLList new_list(cache_->top_sites());
671 if (all_new_urls.find(cache_->top_sites()[i].url) == all_new_urls.end())
672 filtered_forced_urls.push_back(cache_->top_sites()[i]);
730 if (cache_->top_sites().size() <= arraysize(kPrepopulatedPages))
735 last_num_urls_changed_ * range / cache_->top_sites().size()
    [all...]
top_sites_cache.cc 32 void TopSitesCache::SetTopSites(const MostVisitedURLList& top_sites) {
33 top_sites_ = top_sites;
  /external/chromium_org/chrome/browser/extensions/api/top_sites/
top_sites_apitest.cc 7 #include "chrome/browser/extensions/api/top_sites/top_sites_api.h"
9 #include "chrome/browser/history/top_sites.h"
26 history::TopSites* top_sites = browser()->profile()->GetTopSites(); variable
31 top_sites->GetMostVisitedURLs(
  /external/chromium_org/chrome/browser/android/
most_visited_sites.cc 22 #include "chrome/browser/history/top_sites.h"
105 void AddForcedURLOnUIThread(scoped_refptr<history::TopSites> top_sites,
108 top_sites->AddForcedURL(url, base::Time::Now());
114 scoped_refptr<TopSites> top_sites,
126 if (top_sites->GetPageThumbnail(gurl, false, &data)) {
138 base::Bind(AddForcedURLOnUIThread, top_sites, gurl));
207 history::TopSites* top_sites = profile_->GetTopSites(); local
208 if (top_sites) {
211 top_sites->SyncWithHistory();
216 content::Source<history::TopSites>(top_sites));
262 TopSites* top_sites = profile_->GetTopSites(); local
341 TopSites* top_sites = profile_->GetTopSites(); local
    [all...]
dev_tools_server.cc 23 #include "chrome/browser/history/top_sites.h"
297 history::TopSites* top_sites = profile->GetTopSites(); variable
298 if (top_sites) {
300 if (top_sites->GetPageThumbnail(url, false, &data))
381 history::TopSites* top_sites = profile->GetTopSites(); local
382 if (top_sites)
383 top_sites->SyncWithHistory();
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_impl.cc 35 void AddForcedURLOnUIThread(scoped_refptr<history::TopSites> top_sites,
39 if (top_sites.get() != NULL)
40 top_sites->AddForcedURL(url, base::Time::Now());
  /external/chromium_org/chrome/browser/search/
instant_service.cc 9 #include "chrome/browser/history/top_sites.h"
94 history::TopSites* top_sites = profile_->GetTopSites(); local
95 if (top_sites) {
98 content::Source<history::TopSites>(top_sites));
163 history::TopSites* top_sites = profile_->GetTopSites(); local
164 if (!top_sites)
167 top_sites->AddBlacklistedURL(url);
171 history::TopSites* top_sites = profile_->GetTopSites(); local
172 if (!top_sites)
175 top_sites->RemoveBlacklistedURL(url)
179 history::TopSites* top_sites = profile_->GetTopSites(); local
224 history::TopSites* top_sites = profile_->GetTopSites(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/
most_visited_handler.cc 26 #include "chrome/browser/history/top_sites.h"
225 history::MostVisitedURLList top_sites(data);
226 history::MostVisitedTilesExperiment::MaybeShuffle(&top_sites);
228 for (size_t i = 0; i < top_sites.size(); i++) {
229 const history::MostVisitedURL& url = top_sites[i];
278 history::TopSites* top_sites = Profile::FromWebUI(web_ui())->GetTopSites(); local
279 if (!tab_strip_model || !top_sites) {
285 chrome::GetOpenUrls(*tab_strip_model, *top_sites, &open_urls);
suggestions_page_handler.cc 20 #include "chrome/browser/history/top_sites.h"
72 history::TopSites* top_sites = profile->GetTopSites(); local
73 if (top_sites) {
77 top_sites->SyncWithHistory();
82 content::Source<history::TopSites>(top_sites));
  /external/chromium_org/chrome/browser/devtools/
browser_list_tabcontents_provider.cc 10 #include "chrome/browser/history/top_sites.h"
91 history::TopSites* top_sites = profile->GetTopSites(); local
92 if (!top_sites)
95 if (top_sites->GetPageThumbnail(url, false, &data))
  /external/chromium_org/chrome/browser/
jumplist_win.cc 20 #include "chrome/browser/history/top_sites.h"
211 history::TopSites* top_sites = profile_->GetTopSites(); local
212 if (top_sites) {
216 top_sites->SyncWithHistory();
221 content::Source<history::TopSites>(top_sites));
237 history::TopSites* top_sites = profile_->GetTopSites(); local
238 if (top_sites) {
239 top_sites->GetMostVisitedURLs(
  /external/chromium_org/chrome/browser/ui/
browser.cc 59 #include "chrome/browser/history/top_sites.h"
1802 history::TopSites* top_sites = profile_->GetTopSites(); local
    [all...]

Completed in 1108 milliseconds