Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(526)

Unified Diff: ios/chrome/browser/ui/reading_list/reading_list_collection_view_controller_unittest.mm

Issue 2707043002: [Reading List iOS] Store distillation date and size. (Closed)
Patch Set: done Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/reading_list/url_downloader_unittest.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/reading_list/reading_list_collection_view_controller_unittest.mm
diff --git a/ios/chrome/browser/ui/reading_list/reading_list_collection_view_controller_unittest.mm b/ios/chrome/browser/ui/reading_list/reading_list_collection_view_controller_unittest.mm
index de8244f3b7ab6ab07a90e6a0f99c927ad0f290be..3f17f3c89a7a8a72d7204fd15e8c7b0491370de5 100644
--- a/ios/chrome/browser/ui/reading_list/reading_list_collection_view_controller_unittest.mm
+++ b/ios/chrome/browser/ui/reading_list/reading_list_collection_view_controller_unittest.mm
@@ -210,8 +210,9 @@ TEST_F(ReadingListCollectionViewControllerTest,
base::FilePath distilled_path("/distilled/path");
reading_list_model_->AddEntry(url, title,
reading_list::ADDED_VIA_CURRENT_APP);
- reading_list_model_->SetEntryDistilledInfo(url, distilled_path,
- distilled_url);
+ int64_t size = 50;
+ reading_list_model_->SetEntryDistilledInfo(url, distilled_path, distilled_url,
+ size, 100);
// Load view.
[reading_list_view_controller_ view];
DCHECK([reading_list_view_controller_.get().collectionView
« no previous file with comments | « ios/chrome/browser/reading_list/url_downloader_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698