| 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 17 matching lines...) Expand all Loading... |
| 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 dns_prefetch { |
| 38 class RendererNetPredictor; | 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 |
| 48 namespace prerender { | 48 namespace prerender { |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 // TODO(thestig): Extract into a separate file if possible. Cleanup | 215 // TODO(thestig): Extract into a separate file if possible. Cleanup |
| 216 // ENABLE_EXTENSIONS ifdefs in the .cc file as well. | 216 // ENABLE_EXTENSIONS ifdefs in the .cc file as well. |
| 217 #if defined(ENABLE_EXTENSIONS) | 217 #if defined(ENABLE_EXTENSIONS) |
| 218 scoped_ptr<ChromeExtensionsDispatcherDelegate> extension_dispatcher_delegate_; | 218 scoped_ptr<ChromeExtensionsDispatcherDelegate> extension_dispatcher_delegate_; |
| 219 scoped_ptr<extensions::Dispatcher> extension_dispatcher_; | 219 scoped_ptr<extensions::Dispatcher> extension_dispatcher_; |
| 220 scoped_ptr<extensions::RendererPermissionsPolicyDelegate> | 220 scoped_ptr<extensions::RendererPermissionsPolicyDelegate> |
| 221 permissions_policy_delegate_; | 221 permissions_policy_delegate_; |
| 222 #endif | 222 #endif |
| 223 | 223 |
| 224 scoped_ptr<PrescientNetworkingDispatcher> prescient_networking_dispatcher_; | 224 scoped_ptr<dns_prefetch::PrescientNetworkingDispatcher> |
| 225 scoped_ptr<dns_prefetch::RendererNetPredictor> net_predictor_; | 225 prescient_networking_dispatcher_; |
| 226 scoped_ptr<password_manager::CredentialManagerClient> | 226 scoped_ptr<password_manager::CredentialManagerClient> |
| 227 credential_manager_client_; | 227 credential_manager_client_; |
| 228 #if defined(ENABLE_SPELLCHECK) | 228 #if defined(ENABLE_SPELLCHECK) |
| 229 scoped_ptr<SpellCheck> spellcheck_; | 229 scoped_ptr<SpellCheck> spellcheck_; |
| 230 #endif | 230 #endif |
| 231 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 231 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
| 232 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 232 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
| 233 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 233 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
| 234 #if defined(ENABLE_WEBRTC) | 234 #if defined(ENABLE_WEBRTC) |
| 235 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 235 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
| 236 #endif | 236 #endif |
| 237 scoped_ptr<SearchBouncer> search_bouncer_; | 237 scoped_ptr<SearchBouncer> search_bouncer_; |
| 238 #if defined(ENABLE_PRINT_PREVIEW) | 238 #if defined(ENABLE_PRINT_PREVIEW) |
| 239 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; | 239 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 240 #endif | 240 #endif |
| 241 #if defined(ENABLE_PLUGINS) | 241 #if defined(ENABLE_PLUGINS) |
| 242 std::set<std::string> allowed_compositor_origins_; | 242 std::set<std::string> allowed_compositor_origins_; |
| 243 std::set<std::string> allowed_video_decode_origins_; | 243 std::set<std::string> allowed_video_decode_origins_; |
| 244 #endif | 244 #endif |
| 245 }; | 245 }; |
| 246 | 246 |
| 247 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 247 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |