summaryrefslogtreecommitdiffstats
path: root/content/common/devtools_messages.h
diff options
context:
space:
mode:
authoryurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-24 17:40:37 +0000
committeryurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-24 17:40:37 +0000
commit90b068e8cee296f9cb6c5b4d3d744daef3de8420 (patch)
tree9d93f1bf6985e767a34e26456e550558aecf5f71 /content/common/devtools_messages.h
parent509c2a30697e4cd824fec8e25dab7600bc49512d (diff)
downloadchromium_src-90b068e8cee296f9cb6c5b4d3d744daef3de8420.zip
chromium_src-90b068e8cee296f9cb6c5b4d3d744daef3de8420.tar.gz
chromium_src-90b068e8cee296f9cb6c5b4d3d744daef3de8420.tar.bz2
DevTools: remove support for legacy remote debugger.
DevTools remote debugging protocol supersedes the legacy protocol and old implementation should be removed. BUG=104625 TEST=Existing tests Review URL: http://codereview.chromium.org/8635005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/devtools_messages.h')
-rw-r--r--content/common/devtools_messages.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/content/common/devtools_messages.h b/content/common/devtools_messages.h
index f8d9e16..3b261b6 100644
--- a/content/common/devtools_messages.h
+++ b/content/common/devtools_messages.h
@@ -56,11 +56,6 @@
IPC_MESSAGE_ROUTED1(DevToolsClientMsg_DispatchOnInspectorFrontend,
std::string /* message */)
-// Legacy debugger output message.
-IPC_MESSAGE_ROUTED1(DevToolsClientMsg_DebuggerOutput,
- std::string /* message */)
-
-
//-----------------------------------------------------------------------------
// These are messages sent from DevToolsClient to DevToolsAgent through the
// browser.
@@ -82,13 +77,6 @@ IPC_MESSAGE_ROUTED0(DevToolsAgentMsg_FrontendLoaded)
IPC_MESSAGE_ROUTED1(DevToolsAgentMsg_DispatchOnInspectorBackend,
std::string /* message */)
-// Send debugger command to the debugger agent. Debugger commands should
-// be handled on IO thread(while all other devtools messages are handled in
-// the render thread) to allow executing the commands when v8 is on a
-// breakpoint.
-IPC_MESSAGE_ROUTED1(DevToolsAgentMsg_DebuggerCommand,
- std::string /* command */)
-
// Inspect element with the given coordinates.
IPC_MESSAGE_ROUTED2(DevToolsAgentMsg_InspectElement,
int /* x */,