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 #include "ipc/ipc_channel_proxy.h" |
17 | 17 |
18 class ChromeRenderProcessObserver; | 18 class ChromeRenderProcessObserver; |
19 class NetErrorHelper; | |
mmenke
2014/03/04 17:26:25
no longer needed.
Elly Fong-Jones
2014/03/06 21:48:37
Done.
| |
19 class PrescientNetworkingDispatcher; | 20 class PrescientNetworkingDispatcher; |
20 class RendererNetPredictor; | 21 class RendererNetPredictor; |
21 class SearchBouncer; | 22 class SearchBouncer; |
22 #if defined(ENABLE_SPELLCHECK) | 23 #if defined(ENABLE_SPELLCHECK) |
23 class SpellCheck; | 24 class SpellCheck; |
24 class SpellCheckProvider; | 25 class SpellCheckProvider; |
25 #endif | 26 #endif |
26 | 27 |
27 struct ChromeViewHostMsg_GetPluginInfo_Output; | 28 struct ChromeViewHostMsg_GetPluginInfo_Output; |
28 | 29 |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
205 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 206 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
206 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 207 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
207 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 208 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
208 #if defined(ENABLE_WEBRTC) | 209 #if defined(ENABLE_WEBRTC) |
209 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 210 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
210 #endif | 211 #endif |
211 scoped_ptr<SearchBouncer> search_bouncer_; | 212 scoped_ptr<SearchBouncer> search_bouncer_; |
212 }; | 213 }; |
213 | 214 |
214 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 215 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |