Chromium Code Reviews| Index: components/history/core/browser/history_types.h |
| diff --git a/components/history/core/browser/history_types.h b/components/history/core/browser/history_types.h |
| index 51e948c153a2ad054ebf1fe12794d12bfcfbcda5..db976d244b254a903886102451fe4c6cab0bc929 100644 |
| --- a/components/history/core/browser/history_types.h |
| +++ b/components/history/core/browser/history_types.h |
| @@ -459,8 +459,9 @@ class MostVisitedThumbnails |
| // Map from host to visit count, sorted by visit count descending. |
| typedef std::vector<std::pair<std::string, int>> TopHostsList; |
| -// Map from origins to a count of matching URLs. |
| -typedef std::map<GURL, int> OriginCountMap; |
| +// Map from origins to a count of matching URLs and the last visited time to any |
| +// URL under that origin. |
| +typedef std::map<GURL, std::pair<int, base::Time>> OriginCountMap; |
|
sdefresne
2016/04/19 07:18:01
OriginCountAndLastVisitedMap?
dominickn
2016/04/19 07:59:32
Done.
|
| // Statistics ----------------------------------------------------------------- |