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

Unified Diff: content/test/test_render_view_host_factory.cc

Issue 2861433002: Implement ProcessReusePolicy for SiteInstances (Closed)
Patch Set: Fixed ChromeOS issue Created 3 years, 7 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
« no previous file with comments | « content/browser/site_instance_impl_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_render_view_host_factory.cc
diff --git a/content/test/test_render_view_host_factory.cc b/content/test/test_render_view_host_factory.cc
index b3545501e24bebb0cd87414ca220532a2f0c34bb..67325477cf58727b95661445ff3b725cced4966d 100644
--- a/content/test/test_render_view_host_factory.cc
+++ b/content/test/test_render_view_host_factory.cc
@@ -14,18 +14,18 @@ namespace content {
TestRenderViewHostFactory::TestRenderViewHostFactory(
RenderProcessHostFactory* rph_factory) {
- SiteInstanceImpl::set_render_process_host_factory(rph_factory);
+ RenderProcessHostImpl::set_render_process_host_factory(rph_factory);
RenderViewHostFactory::RegisterFactory(this);
}
TestRenderViewHostFactory::~TestRenderViewHostFactory() {
RenderViewHostFactory::UnregisterFactory();
- SiteInstanceImpl::set_render_process_host_factory(NULL);
+ RenderProcessHostImpl::set_render_process_host_factory(NULL);
}
void TestRenderViewHostFactory::set_render_process_host_factory(
RenderProcessHostFactory* rph_factory) {
- SiteInstanceImpl::set_render_process_host_factory(rph_factory);
+ RenderProcessHostImpl::set_render_process_host_factory(rph_factory);
}
RenderViewHost* TestRenderViewHostFactory::CreateRenderViewHost(
« no previous file with comments | « content/browser/site_instance_impl_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698