Chromium Code Reviews| Index: components/dom_distiller/standalone/content_extractor.cc |
| diff --git a/components/dom_distiller/standalone/content_extractor.cc b/components/dom_distiller/standalone/content_extractor.cc |
| index 7f7a216312a7be4160647d9dcd154c397d5f8420..949fd11f9b9780897d53a7b688d65959a2157701 100644 |
| --- a/components/dom_distiller/standalone/content_extractor.cc |
| +++ b/components/dom_distiller/standalone/content_extractor.cc |
| @@ -13,6 +13,7 @@ |
| #include "base/strings/string_split.h" |
| #include "components/dom_distiller/content/distiller_page_web_contents.h" |
| #include "components/dom_distiller/core/article_entry.h" |
| +#include "components/dom_distiller/core/distilled_page_prefs.h" |
| #include "components/dom_distiller/core/distiller.h" |
| #include "components/dom_distiller/core/dom_distiller_service.h" |
| #include "components/dom_distiller/core/dom_distiller_store.h" |
| @@ -100,7 +101,8 @@ scoped_ptr<DomDistillerService> CreateDomDistillerService( |
| return scoped_ptr<DomDistillerService>(new DomDistillerService( |
| dom_distiller_store.PassAs<DomDistillerStoreInterface>(), |
| distiller_factory.Pass(), |
| - distiller_page_factory.Pass())); |
| + distiller_page_factory.Pass(), |
| + scoped_ptr<DistilledPagePrefs>())); |
|
nyquist
2014/07/11 01:41:05
I think this needs a preference. The content extra
smaslo
2014/07/11 22:37:44
Done.
|
| } |
| void AddComponentsResources() { |