OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "content/public/renderer/content_renderer_client.h" | 15 #include "content/public/renderer/content_renderer_client.h" |
16 #include "ipc/ipc_channel_proxy.h" | 16 #include "ipc/ipc_channel_proxy.h" |
17 | 17 |
18 class ChromeExtensionsDispatcherDelegate; | 18 class ChromeExtensionsDispatcherDelegate; |
19 class ChromeRenderProcessObserver; | 19 class ChromeRenderProcessObserver; |
| 20 #if defined(ENABLE_FULL_PRINTING) |
| 21 class ChromePDFPrintDelegate; |
| 22 #endif |
20 class PrescientNetworkingDispatcher; | 23 class PrescientNetworkingDispatcher; |
21 class RendererNetPredictor; | 24 class RendererNetPredictor; |
22 class SearchBouncer; | 25 class SearchBouncer; |
23 #if defined(ENABLE_SPELLCHECK) | 26 #if defined(ENABLE_SPELLCHECK) |
24 class SpellCheck; | 27 class SpellCheck; |
25 class SpellCheckProvider; | 28 class SpellCheckProvider; |
26 #endif | 29 #endif |
27 | 30 |
28 struct ChromeViewHostMsg_GetPluginInfo_Output; | 31 struct ChromeViewHostMsg_GetPluginInfo_Output; |
29 | 32 |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 #if defined(ENABLE_SPELLCHECK) | 203 #if defined(ENABLE_SPELLCHECK) |
201 scoped_ptr<SpellCheck> spellcheck_; | 204 scoped_ptr<SpellCheck> spellcheck_; |
202 #endif | 205 #endif |
203 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 206 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
204 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 207 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
205 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 208 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
206 #if defined(ENABLE_WEBRTC) | 209 #if defined(ENABLE_WEBRTC) |
207 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 210 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
208 #endif | 211 #endif |
209 scoped_ptr<SearchBouncer> search_bouncer_; | 212 scoped_ptr<SearchBouncer> search_bouncer_; |
| 213 #if defined(ENABLE_FULL_PRINTING) |
| 214 scoped_ptr<ChromePDFPrintDelegate> pdf_print_delegate_; |
| 215 #endif |
210 #if defined(ENABLE_PLUGINS) | 216 #if defined(ENABLE_PLUGINS) |
211 std::set<std::string> allowed_compositor_origins_; | 217 std::set<std::string> allowed_compositor_origins_; |
212 std::set<std::string> allowed_video_decode_origins_; | 218 std::set<std::string> allowed_video_decode_origins_; |
213 #endif | 219 #endif |
214 }; | 220 }; |
215 | 221 |
216 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 222 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |