| 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 */)>;
|
|
|