| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 } | 55 } |
| 56 | 56 |
| 57 namespace safe_browsing { | 57 namespace safe_browsing { |
| 58 class PhishingClassifierFilter; | 58 class PhishingClassifierFilter; |
| 59 } | 59 } |
| 60 | 60 |
| 61 namespace subresource_filter { | 61 namespace subresource_filter { |
| 62 class RulesetDealer; | 62 class RulesetDealer; |
| 63 } | 63 } |
| 64 | 64 |
| 65 namespace visitedlink { | |
| 66 class VisitedLinkSlave; | |
| 67 } | |
| 68 | |
| 69 namespace web_cache { | 65 namespace web_cache { |
| 70 class WebCacheImpl; | 66 class WebCacheImpl; |
| 71 } | 67 } |
| 72 | 68 |
| 73 namespace blink { | 69 namespace blink { |
| 74 class WebSecurityOrigin; | 70 class WebSecurityOrigin; |
| 75 } | 71 } |
| 76 | 72 |
| 77 #if defined(ENABLE_WEBRTC) | 73 #if defined(ENABLE_WEBRTC) |
| 78 class WebRtcLoggingMessageFilter; | 74 class WebRtcLoggingMessageFilter; |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 227 |
| 232 std::unique_ptr<ChromeRenderThreadObserver> chrome_observer_; | 228 std::unique_ptr<ChromeRenderThreadObserver> chrome_observer_; |
| 233 std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_; | 229 std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_; |
| 234 | 230 |
| 235 std::unique_ptr<network_hints::PrescientNetworkingDispatcher> | 231 std::unique_ptr<network_hints::PrescientNetworkingDispatcher> |
| 236 prescient_networking_dispatcher_; | 232 prescient_networking_dispatcher_; |
| 237 | 233 |
| 238 #if defined(ENABLE_SPELLCHECK) | 234 #if defined(ENABLE_SPELLCHECK) |
| 239 std::unique_ptr<SpellCheck> spellcheck_; | 235 std::unique_ptr<SpellCheck> spellcheck_; |
| 240 #endif | 236 #endif |
| 241 std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | |
| 242 std::unique_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 237 std::unique_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
| 243 std::unique_ptr<subresource_filter::RulesetDealer> | 238 std::unique_ptr<subresource_filter::RulesetDealer> |
| 244 subresource_filter_ruleset_dealer_; | 239 subresource_filter_ruleset_dealer_; |
| 245 std::unique_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 240 std::unique_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
| 246 #if defined(ENABLE_WEBRTC) | 241 #if defined(ENABLE_WEBRTC) |
| 247 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 242 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
| 248 #endif | 243 #endif |
| 249 #if defined(ENABLE_PRINT_PREVIEW) | 244 #if defined(ENABLE_PRINT_PREVIEW) |
| 250 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; | 245 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 251 #endif | 246 #endif |
| 252 #if defined(ENABLE_PLUGINS) | 247 #if defined(ENABLE_PLUGINS) |
| 253 std::set<std::string> allowed_camera_device_origins_; | 248 std::set<std::string> allowed_camera_device_origins_; |
| 254 std::set<std::string> allowed_compositor_origins_; | 249 std::set<std::string> allowed_compositor_origins_; |
| 255 #endif | 250 #endif |
| 256 | 251 |
| 257 #if defined(OS_CHROMEOS) | 252 #if defined(OS_CHROMEOS) |
| 258 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; | 253 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; |
| 259 #endif | 254 #endif |
| 260 }; | 255 }; |
| 261 | 256 |
| 262 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 257 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |