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> |
(...skipping 16 matching lines...) Expand all Loading... |
27 class SpellCheckProvider; | 27 class SpellCheckProvider; |
28 #endif | 28 #endif |
29 | 29 |
30 struct ChromeViewHostMsg_GetPluginInfo_Output; | 30 struct ChromeViewHostMsg_GetPluginInfo_Output; |
31 | 31 |
32 namespace content { | 32 namespace content { |
33 class BrowserPluginDelegate; | 33 class BrowserPluginDelegate; |
34 struct WebPluginInfo; | 34 struct WebPluginInfo; |
35 } | 35 } |
36 | 36 |
37 namespace dns_prefetch { | 37 namespace network_hints { |
38 class PrescientNetworkingDispatcher; | 38 class PrescientNetworkingDispatcher; |
39 } | 39 } |
40 | 40 |
41 namespace extensions { | 41 namespace extensions { |
42 class Dispatcher; | 42 class Dispatcher; |
43 class Extension; | 43 class Extension; |
44 class ExtensionSet; | 44 class ExtensionSet; |
45 class RendererPermissionsPolicyDelegate; | 45 class RendererPermissionsPolicyDelegate; |
46 } | 46 } |
47 | 47 |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 | 215 |
216 // TODO(thestig): Extract into a separate file if possible. Cleanup | 216 // TODO(thestig): Extract into a separate file if possible. Cleanup |
217 // ENABLE_EXTENSIONS ifdefs in the .cc file as well. | 217 // ENABLE_EXTENSIONS ifdefs in the .cc file as well. |
218 #if defined(ENABLE_EXTENSIONS) | 218 #if defined(ENABLE_EXTENSIONS) |
219 scoped_ptr<ChromeExtensionsDispatcherDelegate> extension_dispatcher_delegate_; | 219 scoped_ptr<ChromeExtensionsDispatcherDelegate> extension_dispatcher_delegate_; |
220 scoped_ptr<extensions::Dispatcher> extension_dispatcher_; | 220 scoped_ptr<extensions::Dispatcher> extension_dispatcher_; |
221 scoped_ptr<extensions::RendererPermissionsPolicyDelegate> | 221 scoped_ptr<extensions::RendererPermissionsPolicyDelegate> |
222 permissions_policy_delegate_; | 222 permissions_policy_delegate_; |
223 #endif | 223 #endif |
224 | 224 |
225 scoped_ptr<dns_prefetch::PrescientNetworkingDispatcher> | 225 scoped_ptr<network_hints::PrescientNetworkingDispatcher> |
226 prescient_networking_dispatcher_; | 226 prescient_networking_dispatcher_; |
227 scoped_ptr<password_manager::CredentialManagerClient> | 227 scoped_ptr<password_manager::CredentialManagerClient> |
228 credential_manager_client_; | 228 credential_manager_client_; |
229 #if defined(ENABLE_SPELLCHECK) | 229 #if defined(ENABLE_SPELLCHECK) |
230 scoped_ptr<SpellCheck> spellcheck_; | 230 scoped_ptr<SpellCheck> spellcheck_; |
231 #endif | 231 #endif |
232 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 232 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
233 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 233 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
234 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 234 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
235 #if defined(ENABLE_WEBRTC) | 235 #if defined(ENABLE_WEBRTC) |
236 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 236 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
237 #endif | 237 #endif |
238 scoped_ptr<SearchBouncer> search_bouncer_; | 238 scoped_ptr<SearchBouncer> search_bouncer_; |
239 #if defined(ENABLE_PRINT_PREVIEW) | 239 #if defined(ENABLE_PRINT_PREVIEW) |
240 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; | 240 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; |
241 #endif | 241 #endif |
242 #if defined(ENABLE_PLUGINS) | 242 #if defined(ENABLE_PLUGINS) |
243 std::set<std::string> allowed_compositor_origins_; | 243 std::set<std::string> allowed_compositor_origins_; |
244 std::set<std::string> allowed_video_decode_origins_; | 244 std::set<std::string> allowed_video_decode_origins_; |
245 #endif | 245 #endif |
246 }; | 246 }; |
247 | 247 |
248 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 248 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |