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

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: fix android_clang_dbg_recipe build 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
« no previous file with comments | « chrome/browser/android/most_visited_sites.cc ('k') | chrome/browser/android/popular_sites.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/popular_sites.h
diff --git a/chrome/browser/android/popular_sites.h b/chrome/browser/android/popular_sites.h
index 2791b4f7e3c69bf9f173cf3896f0af44556ec04b..a8170627b04ea74acd735afc1997a245d895b177 100644
--- a/chrome/browser/android/popular_sites.h
+++ b/chrome/browser/android/popular_sites.h
@@ -31,11 +31,16 @@ class Profile;
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);
+ ~Site();
base::string16 title;
GURL url;
GURL favicon_url;
+ GURL thumbnail_url;
};
using FinishedCallback = base::Callback<void(bool /* success */)>;
« no previous file with comments | « chrome/browser/android/most_visited_sites.cc ('k') | chrome/browser/android/popular_sites.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698