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

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

Issue 11343017: Move remaining files in content\browser\renderer_host to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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
===================================================================
--- 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

Powered by Google App Engine
This is Rietveld 408576698