Chromium Code Reviews| Index: components/ntp_snippets/bookmarks/bookmark_last_visit_utils.cc |
| diff --git a/components/ntp_snippets/bookmarks/bookmark_last_visit_utils.cc b/components/ntp_snippets/bookmarks/bookmark_last_visit_utils.cc |
| index 77f659d17d4ca7628d42ed3eb3d931dbd504dc1a..860af7a6575171ff64ec85bb650d297714eae05d 100644 |
| --- a/components/ntp_snippets/bookmarks/bookmark_last_visit_utils.cc |
| +++ b/components/ntp_snippets/bookmarks/bookmark_last_visit_utils.cc |
| @@ -61,11 +61,6 @@ base::Time GetLastVisitDateForBookmark(const BookmarkNode* node) { |
| std::string last_visit_date_string; |
| node->GetMetaInfo(kBookmarkLastVisitDateKey, &last_visit_date_string); |
| - |
| - // Use creation date if no last visit info present. |
|
Marc Treib
2016/08/11 13:03:43
I think the header has a comment that mentions the
jkrcal
2016/08/11 13:59:26
Done.
|
| - if (last_visit_date_string.empty()) |
| - return node->date_added(); |
| - |
| return ParseLastVisitDate(last_visit_date_string); |
| } |