Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7156)

Unified Diff: chrome/browser/ui/webui/ntp/suggestions_page_handler.h

Issue 10115001: Added page score to the ntp suggestions tab. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed comments. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/ntp/suggestions_page_handler.h
diff --git a/chrome/browser/ui/webui/ntp/suggestions_page_handler.h b/chrome/browser/ui/webui/ntp/suggestions_page_handler.h
index 59342b0f756eca52e3e735b14fdcf3f954fe0d5c..fa71a1bf8f25684ce197dcae75616f5b33f67141 100644
--- a/chrome/browser/ui/webui/ntp/suggestions_page_handler.h
+++ b/chrome/browser/ui/webui/ntp/suggestions_page_handler.h
@@ -69,12 +69,12 @@ class SuggestionsHandler : public content::WebUIMessageHandler,
void StartQueryForSuggestions();
// Sets pages_value_ from a format produced by TopSites.
- void SetPagesValueFromTopSites(const history::MostVisitedURLList& data);
+ void SetPagesValueFromTopSites(const history::FilteredURLList& data);
// Callback for History.
void OnSuggestionsURLsAvailable(
CancelableRequestProvider::Handle handle,
- history::MostVisitedURLList data);
+ const history::FilteredURLList& data);
// Puts the passed URL in the blacklist (so it does not show as a thumbnail).
void BlacklistURL(const GURL& url);

Powered by Google App Engine
This is Rietveld 408576698