| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 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/string16.h" | 14 #include "base/string16.h" |
| 15 #include "content/public/renderer/content_renderer_client.h" | 15 #include "content/public/renderer/content_renderer_client.h" |
| 16 | 16 |
| 17 class ChromeRenderProcessObserver; | 17 class ChromeRenderProcessObserver; |
| 18 class Extension; | 18 class Extension; |
| 19 class ExtensionDispatcher; | 19 class ExtensionDispatcher; |
| 20 class ExtensionSet; | 20 class ExtensionSet; |
| 21 class RendererHistogramSnapshots; | 21 class RendererHistogramSnapshots; |
| 22 class RendererNetPredictor; | 22 class RendererNetPredictor; |
| 23 class SpellCheck; | 23 class SpellCheck; |
| 24 class SpellCheckProvider; | 24 class SpellCheckProvider; |
| 25 class VisitedLinkSlave; | 25 class VisitedLinkSlave; |
| 26 | 26 |
| 27 struct ChromeViewHostMsg_GetPluginInfo_Status; | 27 struct ChromeViewHostMsg_GetPluginInfo_Status; |
| 28 | 28 |
| 29 namespace prerender { |
| 30 class PrerenderDispatcher; |
| 31 } |
| 32 |
| 29 namespace safe_browsing { | 33 namespace safe_browsing { |
| 30 class PhishingClassifierFilter; | 34 class PhishingClassifierFilter; |
| 31 } | 35 } |
| 32 | 36 |
| 33 namespace webkit { | 37 namespace webkit { |
| 34 struct WebPluginInfo; | 38 struct WebPluginInfo; |
| 35 namespace npapi { | 39 namespace npapi { |
| 36 class PluginGroup; | 40 class PluginGroup; |
| 37 } | 41 } |
| 38 } | 42 } |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 bool is_extension_from_webstore, | 156 bool is_extension_from_webstore, |
| 153 WebKit::WebPluginParams* params); | 157 WebKit::WebPluginParams* params); |
| 154 | 158 |
| 155 scoped_ptr<ChromeRenderProcessObserver> chrome_observer_; | 159 scoped_ptr<ChromeRenderProcessObserver> chrome_observer_; |
| 156 scoped_ptr<ExtensionDispatcher> extension_dispatcher_; | 160 scoped_ptr<ExtensionDispatcher> extension_dispatcher_; |
| 157 scoped_ptr<RendererHistogramSnapshots> histogram_snapshots_; | 161 scoped_ptr<RendererHistogramSnapshots> histogram_snapshots_; |
| 158 scoped_ptr<RendererNetPredictor> net_predictor_; | 162 scoped_ptr<RendererNetPredictor> net_predictor_; |
| 159 scoped_ptr<SpellCheck> spellcheck_; | 163 scoped_ptr<SpellCheck> spellcheck_; |
| 160 scoped_ptr<VisitedLinkSlave> visited_link_slave_; | 164 scoped_ptr<VisitedLinkSlave> visited_link_slave_; |
| 161 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 165 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
| 166 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
| 162 }; | 167 }; |
| 163 | 168 |
| 164 } // namespace chrome | 169 } // namespace chrome |
| 165 | 170 |
| 166 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 171 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |