Chromium Code Reviews| Index: chrome/browser/dom_distiller/lazy_dom_distiller_service.h |
| diff --git a/chrome/browser/dom_distiller/lazy_dom_distiller_service.h b/chrome/browser/dom_distiller/lazy_dom_distiller_service.h |
| index d3ed5f4499f6c5e7f6b55ab8a26f785cab18295f..e83a132c64f3a05741f34ebf07f3441087f6d674 100644 |
| --- a/chrome/browser/dom_distiller/lazy_dom_distiller_service.h |
| +++ b/chrome/browser/dom_distiller/lazy_dom_distiller_service.h |
| @@ -54,7 +54,7 @@ class LazyDomDistillerService : public DomDistillerServiceInterface, |
| scoped_ptr<SourcePageHandle> handle) OVERRIDE; |
| virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; |
| virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; |
| - |
| + virtual ReaderModePrefs* GetReaderModePrefs() OVERRIDE; |
|
robliao
2014/06/17 18:01:49
Add linebreak after this line.
Also make this met
smaslo
2014/06/17 22:44:07
Done.
|
| private: |
| // Accessor method for the backing service instance. |
| DomDistillerServiceInterface* instance() const; |
| @@ -71,6 +71,9 @@ class LazyDomDistillerService : public DomDistillerServiceInterface, |
| // A BrowserContextKeyedServiceFactory for the DomDistillerService. |
| const DomDistillerServiceFactory* service_factory_; |
| + // An instance of ReaderModePrefs for the DomDistillerService. |
| + scoped_ptr<ReaderModePrefs> reader_mode_prefs; |
|
robliao
2014/06/17 18:01:49
Add underscore at the end for member variables.
h
smaslo
2014/06/17 22:44:07
Done.
|
| + |
| // Used to track when the profile is shut down. |
| content::NotificationRegistrar registrar_; |