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

Unified Diff: content/public/browser/devtools_agent_host_registry.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/devtools_agent_host_registry.h
diff --git a/content/public/browser/devtools_agent_host_registry.h b/content/public/browser/devtools_agent_host_registry.h
index 404a5cbb099c44dfe2ae198c4a8c50aa99b26d85..e097e466e4cc007b102cd974ff246a47e10ae088 100644
--- a/content/public/browser/devtools_agent_host_registry.h
+++ b/content/public/browser/devtools_agent_host_registry.h
@@ -8,25 +8,25 @@
#include "content/common/content_export.h"
-class RenderViewHost;
-
namespace content {
class DevToolsAgentHost;
+class RenderViewHost;
class WebContents;
class CONTENT_EXPORT DevToolsAgentHostRegistry {
public:
// Returns DevToolsAgentHost that can be used for inspecting |rvh|.
// New DevToolsAgentHost will be created if it does not exist.
- static DevToolsAgentHost* GetDevToolsAgentHost(RenderViewHost* rvh);
+ static DevToolsAgentHost* GetDevToolsAgentHost(content::RenderViewHost* rvh);
jam 2012/03/05 23:59:28 no need for content:: here and below
Jói 2012/03/06 16:38:55 Done.
// Returns render view host instance for given |agent_host|.
- static RenderViewHost* GetRenderViewHost(DevToolsAgentHost* agent_host);
+ static content::RenderViewHost* GetRenderViewHost(
+ DevToolsAgentHost* agent_host);
// Returns true iff an instance of DevToolsAgentHost for the |rvh|
// does exist.
- static bool HasDevToolsAgentHost(RenderViewHost* rvh);
+ static bool HasDevToolsAgentHost(content::RenderViewHost* rvh);
// Returns DevToolsAgentHost that can be used for inspecting shared worker
// with given worker process host id and routing id.

Powered by Google App Engine
This is Rietveld 408576698