| 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_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_ |
| 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "components/dom_distiller/content/browser/distiller_ui_handle.h" | 13 #include "components/dom_distiller/content/browser/distiller_ui_handle.h" |
| 14 #include "content/public/browser/url_data_source.h" | 14 #include "content/public/browser/url_data_source.h" |
| 15 | 15 |
| 16 namespace dom_distiller { | 16 namespace dom_distiller { |
| 17 | 17 |
| 18 class DomDistillerServiceInterface; | 18 class DomDistillerServiceInterface; |
| 19 class DomDistillerViewerSourceTest; | 19 class DomDistillerViewerSourceTest; |
| 20 class ViewerHandle; | 20 class ViewerHandle; |
| 21 class ViewRequestDelegate; | 21 class ViewRequestDelegate; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // An object for accessing chrome-specific UI controls including external | 58 // An object for accessing chrome-specific UI controls including external |
| 59 // feedback and opening the distiller settings. | 59 // feedback and opening the distiller settings. |
| 60 scoped_ptr<DistillerUIHandle> distiller_ui_handle_; | 60 scoped_ptr<DistillerUIHandle> distiller_ui_handle_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerSource); | 62 DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerSource); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace dom_distiller | 65 } // namespace dom_distiller |
| 66 | 66 |
| 67 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_
H_ | 67 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_
H_ |
| OLD | NEW |