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

Side by Side Diff: chrome/browser/dom_distiller/lazy_dom_distiller_service.h

Issue 341563002: Theme Preferences for Distilled Pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor changes Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ 5 #ifndef CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_
6 #define CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ 6 #define CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_
7 7
8 #include "components/dom_distiller/core/dom_distiller_service.h" 8 #include "components/dom_distiller/core/dom_distiller_service.h"
9 #include "components/dom_distiller/core/task_tracker.h" 9 #include "components/dom_distiller/core/task_tracker.h"
10 #include "content/public/browser/notification_observer.h" 10 #include "content/public/browser/notification_observer.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 const std::string& entry_id) OVERRIDE; 47 const std::string& entry_id) OVERRIDE;
48 virtual scoped_ptr<ViewerHandle> ViewUrl( 48 virtual scoped_ptr<ViewerHandle> ViewUrl(
49 ViewRequestDelegate* delegate, 49 ViewRequestDelegate* delegate,
50 scoped_ptr<DistillerPage> distiller_page, 50 scoped_ptr<DistillerPage> distiller_page,
51 const GURL& url) OVERRIDE; 51 const GURL& url) OVERRIDE;
52 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage() OVERRIDE; 52 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage() OVERRIDE;
53 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle( 53 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
54 scoped_ptr<SourcePageHandle> handle) OVERRIDE; 54 scoped_ptr<SourcePageHandle> handle) OVERRIDE;
55 virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; 55 virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE;
56 virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; 56 virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE;
57 57 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.
58 private: 58 private:
59 // Accessor method for the backing service instance. 59 // Accessor method for the backing service instance.
60 DomDistillerServiceInterface* instance() const; 60 DomDistillerServiceInterface* instance() const;
61 61
62 // content::NotificationObserver implementation: 62 // content::NotificationObserver implementation:
63 virtual void Observe(int type, 63 virtual void Observe(int type,
64 const content::NotificationSource& source, 64 const content::NotificationSource& source,
65 const content::NotificationDetails& details) OVERRIDE; 65 const content::NotificationDetails& details) OVERRIDE;
66 66
67 // The Profile to use when retrieving the DomDistillerService and also the 67 // The Profile to use when retrieving the DomDistillerService and also the
68 // profile to listen for destruction of. 68 // profile to listen for destruction of.
69 Profile* profile_; 69 Profile* profile_;
70 70
71 // A BrowserContextKeyedServiceFactory for the DomDistillerService. 71 // A BrowserContextKeyedServiceFactory for the DomDistillerService.
72 const DomDistillerServiceFactory* service_factory_; 72 const DomDistillerServiceFactory* service_factory_;
73 73
74 // An instance of ReaderModePrefs for the DomDistillerService.
75 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.
76
74 // Used to track when the profile is shut down. 77 // Used to track when the profile is shut down.
75 content::NotificationRegistrar registrar_; 78 content::NotificationRegistrar registrar_;
76 79
77 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService); 80 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService);
78 }; 81 };
79 82
80 } // namespace dom_distiller 83 } // namespace dom_distiller
81 84
82 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ 85 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698