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

Unified Diff: content/public/browser/render_process_host_factory.h

Issue 10510005: Hide TestRenderViewHostFactory from embedders since it depends on internal content classes. Expose … (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/render_process_host_factory.h
===================================================================
--- content/public/browser/render_process_host_factory.h (revision 140261)
+++ content/public/browser/render_process_host_factory.h (working copy)
@@ -11,17 +11,14 @@
namespace content {
class BrowserContext;
class RenderProcessHost;
-}
-namespace content {
-
// Factory object for RenderProcessHosts. Using this factory allows tests to
// swap out a different one to use a TestRenderProcessHost.
class RenderProcessHostFactory {
public:
virtual ~RenderProcessHostFactory() {}
virtual RenderProcessHost* CreateRenderProcessHost(
- content::BrowserContext* browser_context) const = 0;
+ BrowserContext* browser_context) const = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698