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

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

Issue 9420007: Move RenderWidgetHostView into content namespace. Fix include paths. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux_chromeos_gtk build issue not caught by trybots. 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_widget_host.h
diff --git a/content/browser/renderer_host/render_widget_host.h b/content/browser/renderer_host/render_widget_host.h
index ff4cb91de47c03300f223e7b4ff5f688b679ba3e..6c8f084e5ffc1dbcb8c06d39c4f02791c3ba7dad 100644
--- a/content/browser/renderer_host/render_widget_host.h
+++ b/content/browser/renderer_host/render_widget_host.h
@@ -31,7 +31,6 @@
class BackingStore;
struct EditCommand;
-class RenderWidgetHostView;
class RenderWidgetHostViewBase;
class TransportDIB;
struct ViewHostMsg_UpdateRect_Params;
@@ -43,6 +42,7 @@ class TimeTicks;
namespace content {
class RenderProcessHost;
+class RenderWidgetHostView;
class RenderWidgetHostViewPort;
}
@@ -156,8 +156,8 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Channel::Listener,
// RenderWidget is being destroyed or the render process crashed. You should
// never cache this pointer since it can become NULL if the renderer crashes,
// instead you should always ask for it using the accessor.
- void SetView(RenderWidgetHostView* view);
- RenderWidgetHostView* view() const;
+ void SetView(content::RenderWidgetHostView* view);
+ content::RenderWidgetHostView* view() const;
content::RenderProcessHost* process() const { return process_; }
int routing_id() const { return routing_id_; }
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698