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 | 17 |
17 class ChromeRenderProcessObserver; | 18 class ChromeRenderProcessObserver; |
18 class PrescientNetworkingDispatcher; | 19 class PrescientNetworkingDispatcher; |
19 class RendererNetPredictor; | 20 class RendererNetPredictor; |
20 class SearchBouncer; | 21 class SearchBouncer; |
21 #if defined(ENABLE_SPELLCHECK) | 22 #if defined(ENABLE_SPELLCHECK) |
22 class SpellCheck; | 23 class SpellCheck; |
23 class SpellCheckProvider; | 24 class SpellCheckProvider; |
24 #endif | 25 #endif |
25 | 26 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 scoped_ptr<RendererNetPredictor> net_predictor_; | 201 scoped_ptr<RendererNetPredictor> net_predictor_; |
201 #if defined(ENABLE_SPELLCHECK) | 202 #if defined(ENABLE_SPELLCHECK) |
202 scoped_ptr<SpellCheck> spellcheck_; | 203 scoped_ptr<SpellCheck> spellcheck_; |
203 #endif | 204 #endif |
204 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 205 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
205 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 206 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
206 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 207 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
207 #if defined(ENABLE_WEBRTC) | 208 #if defined(ENABLE_WEBRTC) |
208 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 209 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
209 #endif | 210 #endif |
| 211 scoped_refptr<IPC::ChannelProxy::MessageFilter> cast_dispatcher_; |
210 scoped_ptr<SearchBouncer> search_bouncer_; | 212 scoped_ptr<SearchBouncer> search_bouncer_; |
211 }; | 213 }; |
212 | 214 |
213 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 215 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |