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) | 20 #if defined(ENABLE_PRINT_PREVIEW) |
21 class ChromePDFPrintClient; | 21 class ChromePDFPrintClient; |
22 #endif | 22 #endif |
23 class PrescientNetworkingDispatcher; | 23 class PrescientNetworkingDispatcher; |
24 class RendererNetPredictor; | 24 class RendererNetPredictor; |
25 class SearchBouncer; | 25 class SearchBouncer; |
26 #if defined(ENABLE_SPELLCHECK) | 26 #if defined(ENABLE_SPELLCHECK) |
27 class SpellCheck; | 27 class SpellCheck; |
28 class SpellCheckProvider; | 28 class SpellCheckProvider; |
29 #endif | 29 #endif |
30 | 30 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 #if defined(ENABLE_SPELLCHECK) | 224 #if defined(ENABLE_SPELLCHECK) |
225 scoped_ptr<SpellCheck> spellcheck_; | 225 scoped_ptr<SpellCheck> spellcheck_; |
226 #endif | 226 #endif |
227 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 227 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
228 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 228 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
229 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 229 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
230 #if defined(ENABLE_WEBRTC) | 230 #if defined(ENABLE_WEBRTC) |
231 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 231 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
232 #endif | 232 #endif |
233 scoped_ptr<SearchBouncer> search_bouncer_; | 233 scoped_ptr<SearchBouncer> search_bouncer_; |
234 #if defined(ENABLE_FULL_PRINTING) | 234 #if defined(ENABLE_PRINT_PREVIEW) |
235 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; | 235 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; |
236 #endif | 236 #endif |
237 #if defined(ENABLE_PLUGINS) | 237 #if defined(ENABLE_PLUGINS) |
238 std::set<std::string> allowed_compositor_origins_; | 238 std::set<std::string> allowed_compositor_origins_; |
239 std::set<std::string> allowed_video_decode_origins_; | 239 std::set<std::string> allowed_video_decode_origins_; |
240 #endif | 240 #endif |
241 }; | 241 }; |
242 | 242 |
243 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 243 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |