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

Unified Diff: chrome/browser/android/popular_sites.h

Issue 1272883004: Popular sites on the NTP: Favicons! (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@enable_popular_sites
Patch Set: . Created 5 years, 4 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/android/popular_sites.h
diff --git a/chrome/browser/android/popular_sites.h b/chrome/browser/android/popular_sites.h
index 64f66ce6005e7da5230a5cf187fff58ad8df3346..017b0c61bbdba9f205be843c312a2e740ef6e720 100644
--- a/chrome/browser/android/popular_sites.h
+++ b/chrome/browser/android/popular_sites.h
@@ -30,10 +30,11 @@ class FileDownloader;
class PopularSites {
public:
struct Site {
- Site(const base::string16& title, const GURL& url);
+ Site(const base::string16& title, const GURL& url, const GURL& favicon_url);
base::string16 title;
GURL url;
+ GURL favicon_url;
};
using FinishedCallback = base::Callback<void(bool /* success */)>;

Powered by Google App Engine
This is Rietveld 408576698