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_CORE_VIEWER_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_VIEWER_H_ |
6 #define COMPONENTS_DOM_DISTILLER_CORE_VIEWER_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CORE_VIEWER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "components/dom_distiller/core/distilled_page_prefs.h" | 14 #include "components/dom_distiller/core/distilled_page_prefs.h" |
| 15 #include "ui/gfx/size.h" |
15 | 16 |
16 namespace dom_distiller { | 17 namespace dom_distiller { |
17 | 18 |
18 class DistilledArticleProto; | 19 class DistilledArticleProto; |
19 class DistilledPageProto; | 20 class DistilledPageProto; |
20 class DomDistillerServiceInterface; | 21 class DomDistillerServiceInterface; |
21 class ViewerHandle; | 22 class ViewerHandle; |
22 class ViewRequestDelegate; | 23 class ViewRequestDelegate; |
23 | 24 |
24 namespace viewer { | 25 namespace viewer { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 const std::string GetCss(); | 61 const std::string GetCss(); |
61 | 62 |
62 // Returns the default JS to be used for a viewer. | 63 // Returns the default JS to be used for a viewer. |
63 const std::string GetJavaScript(); | 64 const std::string GetJavaScript(); |
64 | 65 |
65 // Based on the given path, calls into the DomDistillerServiceInterface for | 66 // Based on the given path, calls into the DomDistillerServiceInterface for |
66 // viewing distilled content based on the |path|. | 67 // viewing distilled content based on the |path|. |
67 scoped_ptr<ViewerHandle> CreateViewRequest( | 68 scoped_ptr<ViewerHandle> CreateViewRequest( |
68 DomDistillerServiceInterface* dom_distiller_service, | 69 DomDistillerServiceInterface* dom_distiller_service, |
69 const std::string& path, | 70 const std::string& path, |
70 ViewRequestDelegate* view_request_delegate); | 71 ViewRequestDelegate* view_request_delegate, |
| 72 const gfx::Size& render_view_size); |
71 | 73 |
72 // Returns JavaScript corresponding to setting a specific theme. | 74 // Returns JavaScript corresponding to setting a specific theme. |
73 const std::string GetDistilledPageThemeJs(DistilledPagePrefs::Theme theme); | 75 const std::string GetDistilledPageThemeJs(DistilledPagePrefs::Theme theme); |
74 | 76 |
75 } // namespace viewer | 77 } // namespace viewer |
76 | 78 |
77 } // namespace dom_distiller | 79 } // namespace dom_distiller |
78 | 80 |
79 #endif // COMPONENTS_DOM_DISTILLER_CORE_VIEWER_H_ | 81 #endif // COMPONENTS_DOM_DISTILLER_CORE_VIEWER_H_ |
OLD | NEW |