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

Unified Diff: ios/chrome/browser/reading_list/reading_list_distiller_page_factory.mm

Issue 2754803003: Reading List iOS: Handle multiple pages. (Closed)
Patch Set: clean Created 3 years, 9 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/reading_list/reading_list_distiller_page_factory.mm
diff --git a/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.mm b/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.mm
index 9aa74011ce1f1528c3881c83de532ec0aa68f095..448df4c6dbd288b8b60980a80a94854fb4985776 100644
--- a/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.mm
+++ b/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.mm
@@ -23,9 +23,10 @@ ReadingListDistillerPageFactory::~ReadingListDistillerPageFactory() {}
std::unique_ptr<ReadingListDistillerPage>
ReadingListDistillerPageFactory::CreateReadingListDistillerPage(
+ const GURL& url,
ReadingListDistillerPageDelegate* delegate) const {
return base::MakeUnique<ReadingListDistillerPage>(
- browser_state_, web_state_dispatcher_.get(), delegate);
+ url, browser_state_, web_state_dispatcher_.get(), delegate);
}
} // namespace reading_list

Powered by Google App Engine
This is Rietveld 408576698