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

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: 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
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..611551cf87791ecb120e8fdfd4a88f18387af86d 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);
// Load view.
[reading_list_view_controller_ view];
DCHECK([reading_list_view_controller_.get().collectionView

Powered by Google App Engine
This is Rietveld 408576698