/external/chromium/chrome/browser/ui/webui/ |
thumbnail_source.h | 19 class TopSites; 48 // TopSites. 49 scoped_refptr<history::TopSites> top_sites_;
|
most_visited_handler.cc | 123 history::TopSites* ts = profile->GetTopSites(); 137 // Use TopSites. 138 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites(); 164 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites(); 174 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites(); 214 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites(); 225 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites(); 244 // Moved on to TopSites and now going back. 303 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites(); 366 history::TopSites* ts = web_ui_->GetProfile()->GetTopSites() [all...] |
/external/chromium/chrome/browser/history/ |
top_sites.cc | 74 // TopSites::FinishHistoryMigration. 77 LoadThumbnailsFromHistoryTask(TopSites* top_sites, 118 scoped_refptr<TopSites> top_sites_; 130 TopSites::TopSites(Profile* profile) 166 void TopSites::Init(const FilePath& db_name) { 173 NewCallback(this, &TopSites::OnGotMostVisitedThumbnails)); 185 bool TopSites::SetPageThumbnail(const GURL& url, 223 void TopSites::GetMostVisitedURLs(CancelableRequestConsumer* consumer, 246 bool TopSites::GetPageThumbnail(const GURL& url [all...] |
top_sites.h | 47 class TopSites 48 : public base::RefCountedThreadSafe<TopSites>, 52 explicit TopSites(Profile* profile); 54 // Initializes TopSites. 158 // This function also returns false if TopSites isn't loaded yet. 163 // TopSites isn't loaded yet. 168 virtual ~TopSites(); 171 friend class base::RefCountedThreadSafe<TopSites>; 299 // Callback from TopSites with the top sites/thumbnails. 327 base::OneShotTimer<TopSites> timer_ [all...] |
top_sites_unittest.cc | 61 // TopSites is queried before it finishes loading. 68 void QueryTopSites(TopSites* top_sites, bool wait) { 89 // Callback for TopSites::GetMostVisitedURLs. 155 // Gets the thumbnail for |url| from TopSites. 196 TopSites* top_sites() { return profile_->GetTopSites(); } 204 return TopSites::GetPrepopulatePages(); 274 // Recreate TopSites and wait for it to load. 280 // Wrappers that allow private TopSites functions to be called from the 296 return TopSites::EncodeBitmap(image, bytes); 312 return TopSites::AddPrepopulatedPages(urls) [all...] |
history.cc | 800 // We don't want to force creation of TopSites. 801 history::TopSites* ts = profile_->GetTopSitesWithoutCreating(); 810 // We don't want to force creation of TopSites. 811 history::TopSites* ts = profile_->GetTopSitesWithoutCreating();
|
expire_history_backend_unittest.cc | 114 scoped_refptr<TopSites> top_sites_; 331 // TODO(sky): fix this. This test isn't really valid for TopSites. For 332 // TopSites we should be checking URL always, not the id. [all...] |
/external/chromium/chrome/browser/tab_contents/ |
thumbnail_generator.h | 28 class TopSites; 122 history::TopSites* top_sites,
|
thumbnail_generator_unittest.cc | 284 // A mock version of TopSites, used for testing ShouldUpdateThumbnail(). 285 class MockTopSites : public history::TopSites { 288 : history::TopSites(profile), 292 // history::TopSites overrides.
|
thumbnail_generator.cc | 441 history::TopSites* top_sites = tab_contents->profile()->GetTopSites(); 468 history::TopSites* top_sites,
|
/external/chromium/android/autofill/ |
profile_android.h | 47 class TopSites; 146 virtual history::TopSites* GetTopSites() { NOTREACHED(); return NULL; } 224 virtual history::TopSites* GetTopSitesWithoutCreating() { NOTREACHED(); return NULL; }
|
/external/chromium/chrome/browser/profiles/ |
profile.h | 31 class TopSites; 214 // Returns a pointer to the TopSites (thumbnail manager) instance 216 virtual history::TopSites* GetTopSites() = 0; 219 virtual history::TopSites* GetTopSitesWithoutCreating() = 0;
|
profile_impl.h | 56 virtual history::TopSites* GetTopSites(); 57 virtual history::TopSites* GetTopSitesWithoutCreating(); 297 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails.
|
profile.cc | 562 virtual history::TopSites* GetTopSitesWithoutCreating() { 566 virtual history::TopSites* GetTopSites() {
|
profile_impl.cc | [all...] |
/external/chromium/chrome/browser/ui/tab_contents/ |
tab_contents_wrapper.cc | 316 history::TopSites* ts = profile()->GetTopSites();
|
/external/chromium/chrome/browser/automation/ |
automation_provider_observers.h | 55 class TopSites; [all...] |
testing_automation_provider.cc | [all...] |
automation_provider_observers.cc | [all...] |