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

Unified Diff: content/public/browser/render_widget_host.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: 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/public/browser/render_widget_host.h
diff --git a/content/public/browser/render_widget_host.h b/content/public/browser/render_widget_host.h
index 39c0535a5a3fef4b5995431e784c535107a5da21..03242c3fa98c492294700da145438c0af65fb7aa 100644
--- a/content/public/browser/render_widget_host.h
+++ b/content/public/browser/render_widget_host.h
@@ -20,13 +20,6 @@
#include "skia/ext/platform_device.h"
#endif
-class RenderWidgetHostImpl;
-
-namespace content {
-class RenderProcessHost;
-class RenderWidgetHostView;
-}
-
namespace gfx {
class Rect;
}
@@ -35,6 +28,12 @@ namespace skia {
class PlatformCanvas;
}
+namespace content {
+
+class RenderProcessHost;
+class RenderWidgetHostImpl;
+class RenderWidgetHostView;
+
// A RenderWidgetHost manages the browser side of a browser<->renderer
// HWND connection. The HWND lives in the browser process, and
// windows events are sent over IPC to the corresponding object in the
@@ -287,4 +286,6 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Channel::Sender {
virtual RenderWidgetHostImpl* AsRenderWidgetHostImpl() = 0;
};
+} // namespace content
+
#endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_

Powered by Google App Engine
This is Rietveld 408576698