summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
Diffstat (limited to 'content/common')
-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 */,