| 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(
|
|
|