OLD | NEW |
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 virtual scoped_ptr<ArticleEntry> RemoveEntry( | 42 virtual scoped_ptr<ArticleEntry> RemoveEntry( |
43 const std::string& entry_id) OVERRIDE; | 43 const std::string& entry_id) OVERRIDE; |
44 virtual scoped_ptr<ViewerHandle> ViewEntry( | 44 virtual scoped_ptr<ViewerHandle> ViewEntry( |
45 ViewRequestDelegate* delegate, | 45 ViewRequestDelegate* delegate, |
46 scoped_ptr<DistillerPage> distiller_page, | 46 scoped_ptr<DistillerPage> distiller_page, |
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( |
| 53 const gfx::Size& render_view_size) OVERRIDE; |
53 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle( | 54 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle( |
54 scoped_ptr<SourcePageHandle> handle) OVERRIDE; | 55 scoped_ptr<SourcePageHandle> handle) OVERRIDE; |
55 virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; | 56 virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; |
56 virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; | 57 virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; |
57 virtual DistilledPagePrefs* GetDistilledPagePrefs() OVERRIDE; | 58 virtual DistilledPagePrefs* GetDistilledPagePrefs() OVERRIDE; |
58 | 59 |
59 private: | 60 private: |
60 // Accessor method for the backing service instance. | 61 // Accessor method for the backing service instance. |
61 DomDistillerServiceInterface* instance() const; | 62 DomDistillerServiceInterface* instance() const; |
62 | 63 |
(...skipping 11 matching lines...) Expand all Loading... |
74 | 75 |
75 // Used to track when the profile is shut down. | 76 // Used to track when the profile is shut down. |
76 content::NotificationRegistrar registrar_; | 77 content::NotificationRegistrar registrar_; |
77 | 78 |
78 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService); | 79 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService); |
79 }; | 80 }; |
80 | 81 |
81 } // namespace dom_distiller | 82 } // namespace dom_distiller |
82 | 83 |
83 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ | 84 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ |
OLD | NEW |