| Index: content/browser/renderer_host/render_view_host_factory.cc
 | 
| ===================================================================
 | 
| --- content/browser/renderer_host/render_view_host_factory.cc	(revision 164665)
 | 
| +++ content/browser/renderer_host/render_view_host_factory.cc	(working copy)
 | 
| @@ -7,10 +7,7 @@
 | 
|  #include "base/logging.h"
 | 
|  #include "content/browser/renderer_host/render_view_host_impl.h"
 | 
|  
 | 
| -using content::RenderViewHost;
 | 
| -using content::RenderViewHostImpl;
 | 
| -using content::SessionStorageNamespace;
 | 
| -using content::SiteInstance;
 | 
| +namespace content {
 | 
|  
 | 
|  // static
 | 
|  RenderViewHostFactory* RenderViewHostFactory::factory_ = NULL;
 | 
| @@ -18,8 +15,8 @@
 | 
|  // static
 | 
|  RenderViewHost* RenderViewHostFactory::Create(
 | 
|      SiteInstance* instance,
 | 
| -    content::RenderViewHostDelegate* delegate,
 | 
| -    content::RenderWidgetHostDelegate* widget_delegate,
 | 
| +    RenderViewHostDelegate* delegate,
 | 
| +    RenderWidgetHostDelegate* widget_delegate,
 | 
|      int routing_id,
 | 
|      bool swapped_out,
 | 
|      SessionStorageNamespace* session_storage_namespace) {
 | 
| @@ -43,3 +40,5 @@
 | 
|    DCHECK(factory_) << "No factory to unregister.";
 | 
|    factory_ = NULL;
 | 
|  }
 | 
| +
 | 
| +}  // namespace content
 | 
| 
 |