Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 11825011: Componentize visitedlinks to src/components/visitedlink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 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/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 RendererNetPredictor; 18 class RendererNetPredictor;
19 class SpellCheck; 19 class SpellCheck;
20 class SpellCheckProvider; 20 class SpellCheckProvider;
21 class VisitedLinkSlave;
22 21
23 struct ChromeViewHostMsg_GetPluginInfo_Output; 22 struct ChromeViewHostMsg_GetPluginInfo_Output;
24 23
24 namespace components {
25 class VisitedLinkSlave;
26 }
27
25 namespace extensions { 28 namespace extensions {
26 class Dispatcher; 29 class Dispatcher;
27 class Extension; 30 class Extension;
28 } 31 }
29 32
30 namespace prerender { 33 namespace prerender {
31 class PrerenderDispatcher; 34 class PrerenderDispatcher;
32 } 35 }
33 36
34 namespace safe_browsing { 37 namespace safe_browsing {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 const GURL& top_url, 163 const GURL& top_url,
161 bool is_nacl_unrestricted, 164 bool is_nacl_unrestricted,
162 bool is_extension_unrestricted, 165 bool is_extension_unrestricted,
163 bool is_extension_from_webstore, 166 bool is_extension_from_webstore,
164 WebKit::WebPluginParams* params); 167 WebKit::WebPluginParams* params);
165 168
166 scoped_ptr<ChromeRenderProcessObserver> chrome_observer_; 169 scoped_ptr<ChromeRenderProcessObserver> chrome_observer_;
167 scoped_ptr<extensions::Dispatcher> extension_dispatcher_; 170 scoped_ptr<extensions::Dispatcher> extension_dispatcher_;
168 scoped_ptr<RendererNetPredictor> net_predictor_; 171 scoped_ptr<RendererNetPredictor> net_predictor_;
169 scoped_ptr<SpellCheck> spellcheck_; 172 scoped_ptr<SpellCheck> spellcheck_;
170 scoped_ptr<VisitedLinkSlave> visited_link_slave_; 173 scoped_ptr<components::VisitedLinkSlave> visited_link_slave_;
171 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; 174 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_;
172 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; 175 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_;
173 }; 176 };
174 177
175 } // namespace chrome 178 } // namespace chrome
176 179
177 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 180 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698