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

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

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.h
diff --git a/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.h b/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.h
index 71acfca6cdc0cad39d76a650baea2036c5b80d63..1fe299672d46d18e3d951ce686c0cfa0343e1b32 100644
--- a/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.h
+++ b/ios/chrome/browser/reading_list/reading_list_distiller_page_factory.h
@@ -8,6 +8,7 @@
#include <memory>
#include "base/macros.h"
+#include "url/gurl.h"
namespace web {
class BrowserState;
@@ -28,8 +29,10 @@ class ReadingListDistillerPageFactory {
explicit ReadingListDistillerPageFactory(web::BrowserState* browser_state);
virtual ~ReadingListDistillerPageFactory();
- // Creates a ReadingListDistillerPage.
+ // Creates a ReadingListDistillerPage to distill |url|.
+ // Information about page will be reported to |delegate|.
std::unique_ptr<ReadingListDistillerPage> CreateReadingListDistillerPage(
+ const GURL& url,
ReadingListDistillerPageDelegate* delegate) const;
private:

Powered by Google App Engine
This is Rietveld 408576698