Index: chrome/browser/history/history_types.h |
diff --git a/chrome/browser/history/history_types.h b/chrome/browser/history/history_types.h |
index f23a310aae70dd658dedae4ed527e1efaab12616..656f3d5b8fa884b86f50ea69bbbc1d1e67465505 100644 |
--- a/chrome/browser/history/history_types.h |
+++ b/chrome/browser/history/history_types.h |
@@ -509,11 +509,18 @@ struct KeywordSearchTermRow { |
struct MostVisitedURL { |
MostVisitedURL(); |
MostVisitedURL(const GURL& url, const string16& title); |
+ MostVisitedURL(const GURL& url, |
+ const string16& title, |
+ const base::Time& last_forced_time); |
~MostVisitedURL(); |
GURL url; |
string16 title; |
+ // If this is a URL for which we want to force a thumbnail, records the last |
+ // time it was forced. If it's not a forced thumbnail, keep a time of 0. |
brettw
2013/10/28 22:22:27
It would be nice if this mentioned why we store th
beaudoin
2013/10/29 15:27:50
Done.
|
+ base::Time last_forced_time; |
+ |
RedirectList redirects; |
bool operator==(const MostVisitedURL& other) { |