Chromium Code Reviews| Index: content/browser/renderer_host/render_view_host_factory.cc |
| diff --git a/content/browser/renderer_host/render_view_host_factory.cc b/content/browser/renderer_host/render_view_host_factory.cc |
| index aa17de11d5f0b4e53e28ec2bf6eb424ada41bdea..10c5b80aa94d0ebca598d66d565b732583a08553 100644 |
| --- a/content/browser/renderer_host/render_view_host_factory.cc |
| +++ b/content/browser/renderer_host/render_view_host_factory.cc |
| @@ -7,6 +7,7 @@ |
| #include "base/logging.h" |
| #include "content/browser/renderer_host/render_view_host_impl.h" |
| +using content::RenderViewHost; |
|
jam
2012/03/05 23:59:28
nit: also the impl?
Jói
2012/03/06 16:38:55
Done.
|
| using content::SessionStorageNamespace; |
| using content::SiteInstance; |
| @@ -23,8 +24,8 @@ RenderViewHost* RenderViewHostFactory::Create( |
| return factory_->CreateRenderViewHost(instance, delegate, routing_id, |
| session_storage_namespace); |
| } |
| - return new RenderViewHostImpl(instance, delegate, routing_id, |
| - session_storage_namespace); |
| + return new content::RenderViewHostImpl(instance, delegate, routing_id, |
| + session_storage_namespace); |
| } |
| // static |