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

Unified Diff: content/renderer/devtools_agent.h

Issue 11232014: Move a bunch of code in content\renderer to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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
« no previous file with comments | « content/renderer/device_orientation_dispatcher.cc ('k') | content/renderer/devtools_agent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/devtools_agent.h
===================================================================
--- content/renderer/devtools_agent.h (revision 163045)
+++ content/renderer/devtools_agent.h (working copy)
@@ -12,17 +12,18 @@
#include "content/public/renderer/render_view_observer.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClient.h"
-class RenderViewImpl;
-
namespace WebKit {
class WebDevToolsAgent;
}
+namespace content {
+class RenderViewImpl;
+
// DevToolsAgent belongs to the inspectable RenderView and provides Glue's
// agents with the communication capabilities. All messages from/to Glue's
// agents infrastructure are flowing through this communication agent.
// There is a corresponding DevToolsClient object on the client side.
-class DevToolsAgent : public content::RenderViewObserver,
+class DevToolsAgent : public RenderViewObserver,
public WebKit::WebDevToolsAgentClient {
public:
explicit DevToolsAgent(RenderViewImpl* render_view);
@@ -57,7 +58,7 @@
void OnDetach();
void OnDispatchOnInspectorBackend(const std::string& message);
void OnInspectElement(int x, int y);
- void OnAddMessageToConsole(content::ConsoleMessageLevel level,
+ void OnAddMessageToConsole(ConsoleMessageLevel level,
const std::string& message);
void ContinueProgram();
void OnSetupDevToolsClient();
@@ -67,4 +68,6 @@
DISALLOW_COPY_AND_ASSIGN(DevToolsAgent);
};
+} // namespace content
+
#endif // CONTENT_RENDERER_DEVTOOLS_AGENT_H_
« no previous file with comments | « content/renderer/device_orientation_dispatcher.cc ('k') | content/renderer/devtools_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698