| 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 COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_VIEWER_SOURCE_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_VIEWER_SOURCE_H_ |
| 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_VIEWER_SOURCE_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_VIEWER_SOURCE_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 10 #include "content/public/browser/url_data_source.h" | 12 #include "content/public/browser/url_data_source.h" |
| 11 | 13 |
| 12 namespace dom_distiller { | 14 namespace dom_distiller { |
| 13 | 15 |
| 14 class DomDistillerServiceInterface; | 16 class DomDistillerServiceInterface; |
| 15 class DomDistillerViewerSourceTest; | 17 class DomDistillerViewerSourceTest; |
| 16 class ViewerHandle; | 18 class ViewerHandle; |
| 17 class ViewRequestDelegate; | 19 class ViewRequestDelegate; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 // The service which contains all the functionality needed to interact with | 56 // The service which contains all the functionality needed to interact with |
| 55 // the list of articles. | 57 // the list of articles. |
| 56 DomDistillerServiceInterface* dom_distiller_service_; | 58 DomDistillerServiceInterface* dom_distiller_service_; |
| 57 | 59 |
| 58 DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerSource); | 60 DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerSource); |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 } // namespace dom_distiller | 63 } // namespace dom_distiller |
| 62 | 64 |
| 63 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_VIEWER_SOURCE_H_ | 65 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_VIEWER_SOURCE_H_ |
| OLD | NEW |