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

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

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: Respond to review comments. Created 8 years, 9 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.h
diff --git a/content/browser/renderer_host/render_view_host_factory.h b/content/browser/renderer_host/render_view_host_factory.h
index ecd151e3c33d63da04c550ab2b18bdea852b89fb..fa33f07a29b85fc949d0c4125d04de8285f2c3a2 100644
--- a/content/browser/renderer_host/render_view_host_factory.h
+++ b/content/browser/renderer_host/render_view_host_factory.h
@@ -9,9 +9,8 @@
#include "base/basictypes.h"
#include "content/common/content_export.h"
-class RenderViewHost;
-
namespace content {
+class RenderViewHost;
class RenderViewHostDelegate;
class SessionStorageNamespace;
class SiteInstance;
@@ -25,7 +24,7 @@ class RenderViewHostFactory {
// Creates a RenderViewHost using the currently registered factory, or the
// default one if no factory is registered. Ownership of the returned
// pointer will be passed to the caller.
- static RenderViewHost* Create(
+ static content::RenderViewHost* Create(
content::SiteInstance* instance,
content::RenderViewHostDelegate* delegate,
int routing_id,
@@ -42,7 +41,7 @@ class RenderViewHostFactory {
// You can derive from this class and specify an implementation for this
// function to create a different kind of RenderViewHost for testing.
- virtual RenderViewHost* CreateRenderViewHost(
+ virtual content::RenderViewHost* CreateRenderViewHost(
content::SiteInstance* instance,
content::RenderViewHostDelegate* delegate,
int routing_id,

Powered by Google App Engine
This is Rietveld 408576698