| 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..64260e1ac89967954f11f8b66c9dd04b6a924e30 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>> OriginCountAndLastVisitMap;
|
|
|
| // Statistics -----------------------------------------------------------------
|
|
|
|
|