| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 229 |
| 234 std::unique_ptr<ChromeRenderThreadObserver> chrome_observer_; | 230 std::unique_ptr<ChromeRenderThreadObserver> chrome_observer_; |
| 235 std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_; | 231 std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_; |
| 236 | 232 |
| 237 std::unique_ptr<network_hints::PrescientNetworkingDispatcher> | 233 std::unique_ptr<network_hints::PrescientNetworkingDispatcher> |
| 238 prescient_networking_dispatcher_; | 234 prescient_networking_dispatcher_; |
| 239 | 235 |
| 240 #if defined(ENABLE_SPELLCHECK) | 236 #if defined(ENABLE_SPELLCHECK) |
| 241 std::unique_ptr<SpellCheck> spellcheck_; | 237 std::unique_ptr<SpellCheck> spellcheck_; |
| 242 #endif | 238 #endif |
| 243 std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | |
| 244 std::unique_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 239 std::unique_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
| 245 std::unique_ptr<subresource_filter::RulesetDealer> | 240 std::unique_ptr<subresource_filter::RulesetDealer> |
| 246 subresource_filter_ruleset_dealer_; | 241 subresource_filter_ruleset_dealer_; |
| 247 std::unique_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 242 std::unique_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
| 248 #if defined(ENABLE_WEBRTC) | 243 #if defined(ENABLE_WEBRTC) |
| 249 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 244 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
| 250 #endif | 245 #endif |
| 251 #if defined(ENABLE_PRINT_PREVIEW) | 246 #if defined(ENABLE_PRINT_PREVIEW) |
| 252 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; | 247 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 253 #endif | 248 #endif |
| 254 #if defined(ENABLE_PLUGINS) | 249 #if defined(ENABLE_PLUGINS) |
| 255 std::set<std::string> allowed_camera_device_origins_; | 250 std::set<std::string> allowed_camera_device_origins_; |
| 256 std::set<std::string> allowed_compositor_origins_; | 251 std::set<std::string> allowed_compositor_origins_; |
| 257 #endif | 252 #endif |
| 258 | 253 |
| 259 #if defined(OS_CHROMEOS) | 254 #if defined(OS_CHROMEOS) |
| 260 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; | 255 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; |
| 261 #endif | 256 #endif |
| 262 }; | 257 }; |
| 263 | 258 |
| 264 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 259 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |