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

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

Issue 1314493013: Popular sites on the NTP: add thumbnails! (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 5 years, 3 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 e8d904e540a814ab58a74790d19c7f4aa5ffc05f..c5b15a5ce0edf411a8d35031cb745fa8e4631f2c 100644
--- a/chrome/browser/android/popular_sites.h
+++ b/chrome/browser/android/popular_sites.h
@@ -30,11 +30,15 @@ class FileDownloader;
class PopularSites {
public:
struct Site {
- Site(const base::string16& title, const GURL& url, const GURL& favicon_url);
+ Site(const base::string16& title,
+ const GURL& url,
+ const GURL& favicon_url,
+ const GURL& thumbnail_url);
base::string16 title;
GURL url;
GURL favicon_url;
+ GURL thumbnail_url;
};
using FinishedCallback = base::Callback<void(bool /* success */)>;

Powered by Google App Engine
This is Rietveld 408576698