| 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 c1d278782399e5a965e7800c60e33b9c11aaa473..daabebe2961e74a450babeef642385832713b8a1 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;
|
|
|
| // Releases all WebState owned by |web_state_dispatcher_|.
|
|
|