| 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 "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" |
| 9 #include "components/dom_distiller/core/dom_distiller_service.h" | 10 #include "components/dom_distiller/core/dom_distiller_service.h" |
| 10 #include "components/dom_distiller/core/task_tracker.h" | 11 #include "components/dom_distiller/core/task_tracker.h" |
| 11 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
| 13 | 14 |
| 14 namespace content { | 15 namespace content { |
| 15 class NotificationSource; | 16 class NotificationSource; |
| 16 class NotificationDetails; | 17 class NotificationDetails; |
| 17 } // namespace content | 18 } // namespace content |
| 18 | 19 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 76 |
| 76 // Used to track when the profile is shut down. | 77 // Used to track when the profile is shut down. |
| 77 content::NotificationRegistrar registrar_; | 78 content::NotificationRegistrar registrar_; |
| 78 | 79 |
| 79 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService); | 80 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService); |
| 80 }; | 81 }; |
| 81 | 82 |
| 82 } // namespace dom_distiller | 83 } // namespace dom_distiller |
| 83 | 84 |
| 84 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ | 85 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ |
| OLD | NEW |