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

Unified Diff: content/browser/renderer_host/render_view_host_impl.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/browser/renderer_host/render_view_host_impl.h
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
index 256919bae563e167d13005f99b1c7ee46a10a600..eafaf89c6005f87fc78f07a2ee370fb480ce54d2 100644
--- a/content/browser/renderer_host/render_view_host_impl.h
+++ b/content/browser/renderer_host/render_view_host_impl.h
@@ -45,11 +45,7 @@ class ListValue;
}
namespace content {
-class RenderViewHostObserver;
-struct FileChooserParams;
-struct ContextMenuParams;
-struct Referrer;
-struct ShowDesktopNotificationHostMsgParams;
+class TestRenderViewHost;
}
namespace ui {
@@ -60,6 +56,14 @@ namespace webkit_glue {
struct WebAccessibility;
}
+namespace content {
+
+class RenderViewHostObserver;
+struct FileChooserParams;
+struct ContextMenuParams;
+struct Referrer;
+struct ShowDesktopNotificationHostMsgParams;
+
// NotificationObserver used to listen for EXECUTE_JAVASCRIPT_RESULT
// notifications.
class ExecuteNotificationObserver : public content::NotificationObserver {
jam 2012/03/05 23:59:28 bunch of "content::" that can be removed now
Jói 2012/03/06 16:38:55 Done.
@@ -503,7 +507,7 @@ class CONTENT_EXPORT RenderViewHostImpl
#endif
private:
- friend class TestRenderViewHost;
+ friend class content::TestRenderViewHost;
jam 2012/03/05 23:59:28 nit: content:: not needed
Jói 2012/03/06 16:38:55 Done.
// Sets whether this RenderViewHost is swapped out in favor of another,
// and clears any waiting state that is no longer relevant.
@@ -607,4 +611,6 @@ class CONTENT_EXPORT RenderViewHostImpl
#pragma warning(pop)
#endif
+} // namespace content
+
#endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698