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

Unified Diff: content/browser/renderer_host/render_view_host_factory.cc

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review, take 2 Created 8 years, 10 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/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

Powered by Google App Engine
This is Rietveld 408576698