HomeSort by relevance Sort by last modified time
    Searched refs:TopSites (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/history/
top_sites.h 32 // Interface for TopSites, which stores the data for the top "most visited"
38 class TopSites
39 : public base::RefCountedThreadSafe<TopSites>,
42 TopSites() {}
44 // Initializes TopSites.
45 static TopSites* Create(Profile* profile, const base::FilePath& db_name);
106 // Asks TopSites to refresh what it thinks the top sites are. This may do
137 // This function also returns false if TopSites isn't loaded yet.
147 // TopSites isn't loaded yet.
168 virtual ~TopSites() {}
    [all...]
top_sites.cc 18 const TopSites::PrepopulatedPage kPrepopulatedPages[] = {
36 TopSites* TopSites::Create(Profile* profile, const base::FilePath& db_name) {
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_utils.h 14 class TopSites;
25 const history::TopSites& top_sites,
tab_strip_model_utils.cc 24 const history::TopSites& top_sites,
  /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...]
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_impl.cc 45 scoped_refptr<history::TopSites> local_ptr(top_sites_);
55 scoped_refptr<history::TopSites> local_ptr(top_sites_);
71 scoped_refptr<history::TopSites> local_ptr(top_sites_);
thumbnail_service_impl.h 20 // logic to an underlying TopSites instances.
40 scoped_refptr<history::TopSites> top_sites_;
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator.h 28 class TopSites;
122 history::TopSites* top_sites,
  /external/chromium_org/chrome/browser/ui/gtk/
global_history_menu.h 24 class TopSites;
111 history::TopSites* top_sites_;
  /external/chromium_org/chrome/browser/ui/webui/ntp/
most_visited_handler.cc 92 history::TopSites* ts = profile->GetTopSites();
94 // TopSites updates itself after a delay. This is especially noticable when
95 // your profile is empty. Ask TopSites to update itself when we're about to
99 // Register for notification when TopSites changes so that we can update
102 content::Source<history::TopSites>(ts));
147 history::TopSites* ts = profile->GetTopSites();
163 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites();
188 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites();
197 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites();
262 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites()
    [all...]
suggestions_page_handler.cc 72 history::TopSites* top_sites = profile->GetTopSites();
74 // TopSites updates itself after a delay. This is especially noticable when
75 // your profile is empty. Ask TopSites to update itself when we're about to
79 // Register for notification when TopSites changes so that we can update
82 content::Source<history::TopSites>(top_sites));
  /external/chromium_org/chrome/browser/extensions/api/top_sites/
top_sites_api.cc 21 history::TopSites* ts = profile()->GetTopSites();
top_sites_apitest.cc 26 history::TopSites* top_sites = browser()->profile()->GetTopSites();
39 // By this point, we know topsites has loaded. We can run the tests now.
  /external/chromium_org/chrome/browser/ui/views/frame/
global_menu_bar_x11.h 27 class TopSites;
156 history::TopSites* top_sites_;
  /external/chromium_org/chrome/browser/android/
most_visited_sites.cc 28 using history::TopSites;
105 scoped_refptr<TopSites> top_sites,
150 TopSites* top_sites = profile->GetTopSites();
179 scoped_refptr<TopSites> top_sites(profile->GetTopSites());
194 TopSites* top_sites = profile->GetTopSites();
dev_tools_server.cc 54 // TopSites updates itself after a delay. Ask TopSites to update itself
75 history::TopSites* top_sites = profile->GetTopSites();
122 history::TopSites* top_sites = profile->GetTopSites();
  /external/chromium_org/chrome/browser/profiles/
profile.h 60 class TopSites;
204 // Returns a pointer to the TopSites (thumbnail manager) instance
206 virtual history::TopSites* GetTopSites() = 0;
209 virtual history::TopSites* GetTopSitesWithoutCreating() = 0;
off_the_record_profile_impl.h 61 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE;
62 virtual history::TopSites* GetTopSites() OVERRIDE;
  /external/chromium_org/chrome/browser/search/
instant_service.cc 71 history::TopSites* top_sites = profile_->GetTopSites();
75 content::Source<history::TopSites>(top_sites));
133 history::TopSites* top_sites = profile_->GetTopSites();
141 history::TopSites* top_sites = profile_->GetTopSites();
149 history::TopSites* top_sites = profile_->GetTopSites();
233 history::TopSites* top_sites = profile_->GetTopSites();
  /external/chromium_org/chrome/test/base/
testing_profile.h 24 class TopSites;
141 // Creates TopSites. This returns immediately, and top sites may not be
142 // loaded. Use BlockUntilTopSitesLoaded to ensure TopSites has finished
146 // Shuts down and nulls out the reference to TopSites.
166 // Blocks until TopSites finishes loading.
210 virtual history::TopSites* GetTopSites() OVERRIDE;
211 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE;
318 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails.
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 24 class TopSites;
191 history::TopSites* top_sites_;
  /external/chromium_org/chrome/browser/devtools/
browser_list_tabcontents_provider.cc 48 history::TopSites* ts = (*it)->GetTopSites();
50 // TopSites updates itself after a delay. Ask TopSites to update itself
77 history::TopSites* top_sites = profile->GetTopSites();

Completed in 470 milliseconds

1 2 3