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

Unified Diff: content/public/browser/render_view_host_observer.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_view_host_observer.h
diff --git a/content/public/browser/render_view_host_observer.h b/content/public/browser/render_view_host_observer.h
index 1c87dcee172484985b9e2a19b840249baa09a280..60686a6527a9f17bcdd201dd87fba8ee9dee8456 100644
--- a/content/public/browser/render_view_host_observer.h
+++ b/content/public/browser/render_view_host_observer.h
@@ -10,11 +10,12 @@
#include "content/common/content_export.h"
class GURL;
-class RenderViewHost;
-class RenderViewHostImpl;
namespace content {
+class RenderViewHost;
+class RenderViewHostImpl;
+
// An observer API implemented by classes which want to filter IPC messages from
// RenderViewHost.
class CONTENT_EXPORT RenderViewHostObserver : public IPC::Channel::Listener,
@@ -49,7 +50,7 @@ class CONTENT_EXPORT RenderViewHostObserver : public IPC::Channel::Listener,
int routing_id() { return routing_id_; }
private:
- friend class ::RenderViewHostImpl;
+ friend class content::RenderViewHostImpl;
jam 2012/03/05 23:59:28 content:: not needed anymore
Jói 2012/03/06 16:38:55 Done.
// Invoked from RenderViewHost. Invokes RenderViewHostDestroyed and NULL out
// |render_view_host_|.

Powered by Google App Engine
This is Rietveld 408576698