Chromium Code Reviews| Index: components/dom_distiller/core/dom_distiller_service.h |
| diff --git a/components/dom_distiller/core/dom_distiller_service.h b/components/dom_distiller/core/dom_distiller_service.h |
| index cd59950bd7fafea972c5c033b91eeec9bec68f2d..e6320cc7461fb2d304e2a98fedeba951aae1c61a 100644 |
| --- a/components/dom_distiller/core/dom_distiller_service.h |
| +++ b/components/dom_distiller/core/dom_distiller_service.h |
| @@ -14,6 +14,7 @@ |
| #include "base/memory/weak_ptr.h" |
| #include "components/dom_distiller/core/article_entry.h" |
| #include "components/dom_distiller/core/distiller_page.h" |
| +#include "components/dom_distiller/core/reader_mode_preferences.h" |
| class GURL; |
| @@ -90,7 +91,9 @@ class DomDistillerServiceInterface { |
| virtual void AddObserver(DomDistillerObserver* observer) = 0; |
| virtual void RemoveObserver(DomDistillerObserver* observer) = 0; |
| - protected: |
| + virtual ReaderModePrefs* GetReaderModePrefs(); |
|
nyquist
2014/06/24 23:08:49
make this pure virtual (add = 0). Also, could you
smaslo
2014/06/26 20:05:37
Done.
|
| + |
| +protected: |
| DomDistillerServiceInterface() {} |
| private: |
| @@ -102,7 +105,8 @@ class DomDistillerService : public DomDistillerServiceInterface { |
| public: |
| DomDistillerService(scoped_ptr<DomDistillerStoreInterface> store, |
| scoped_ptr<DistillerFactory> distiller_factory, |
| - scoped_ptr<DistillerPageFactory> distiller_page_factory); |
| + scoped_ptr<DistillerPageFactory> distiller_page_factory, |
| + scoped_ptr<ReaderModePrefs> reader_mode_prefs); |
| virtual ~DomDistillerService(); |
| // DomDistillerServiceInterface implementation. |
| @@ -127,6 +131,7 @@ class DomDistillerService : public DomDistillerServiceInterface { |
| scoped_ptr<SourcePageHandle> handle) OVERRIDE; |
| virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; |
| virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; |
| + virtual ReaderModePrefs* GetReaderModePrefs() OVERRIDE; |
| private: |
| void CancelTask(TaskTracker* task); |
| @@ -148,6 +153,7 @@ class DomDistillerService : public DomDistillerServiceInterface { |
| scoped_ptr<DistilledContentStore> content_store_; |
| scoped_ptr<DistillerFactory> distiller_factory_; |
| scoped_ptr<DistillerPageFactory> distiller_page_factory_; |
| + scoped_ptr<ReaderModePrefs> reader_mode_prefs_; |
| typedef ScopedVector<TaskTracker> TaskList; |
| TaskList tasks_; |