| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <string> | 9 #include <string> |
| 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 "content/renderer/content_renderer_client.h" | 13 #include "content/public/renderer/content_renderer_client.h" |
| 14 | 14 |
| 15 class ChromeRenderProcessObserver; | 15 class ChromeRenderProcessObserver; |
| 16 class ExtensionDispatcher; | 16 class ExtensionDispatcher; |
| 17 class RendererHistogramSnapshots; | 17 class RendererHistogramSnapshots; |
| 18 class RendererNetPredictor; | 18 class RendererNetPredictor; |
| 19 class SpellCheck; | 19 class SpellCheck; |
| 20 class SpellCheckProvider; | 20 class SpellCheckProvider; |
| 21 class VisitedLinkSlave; | 21 class VisitedLinkSlave; |
| 22 | 22 |
| 23 namespace safe_browsing { | 23 namespace safe_browsing { |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // The SpellCheckProvider is a RenderViewObserver, and handles its own | 125 // The SpellCheckProvider is a RenderViewObserver, and handles its own |
| 126 // destruction. | 126 // destruction. |
| 127 SpellCheckProvider* spellcheck_provider_; | 127 SpellCheckProvider* spellcheck_provider_; |
| 128 scoped_ptr<VisitedLinkSlave> visited_link_slave_; | 128 scoped_ptr<VisitedLinkSlave> visited_link_slave_; |
| 129 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 129 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace chrome | 132 } // namespace chrome |
| 133 | 133 |
| 134 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 134 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |