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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "content/public/renderer/content_renderer_client.h" | 14 #include "content/public/renderer/content_renderer_client.h" |
15 | 15 |
16 class ChromeRenderProcessObserver; | 16 class ChromeRenderProcessObserver; |
17 class ExtensionSet; | 17 class ExtensionSet; |
18 class PrescientNetworkingDispatcher; | 18 class PrescientNetworkingDispatcher; |
19 class RendererNetPredictor; | 19 class RendererNetPredictor; |
20 class SpellCheck; | 20 class SpellCheck; |
21 class SpellCheckProvider; | 21 class SpellCheckProvider; |
22 | 22 |
23 struct ChromeViewHostMsg_GetPluginInfo_Output; | 23 struct ChromeViewHostMsg_GetPluginInfo_Output; |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 189 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
190 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 190 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
191 #if defined(ENABLE_WEBRTC) | 191 #if defined(ENABLE_WEBRTC) |
192 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 192 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
193 #endif | 193 #endif |
194 }; | 194 }; |
195 | 195 |
196 } // namespace chrome | 196 } // namespace chrome |
197 | 197 |
198 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 198 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |