Index: chrome/common/devtools_messages_internal.h |
diff --git a/chrome/common/devtools_messages_internal.h b/chrome/common/devtools_messages_internal.h |
index dcc8eeeeac2b6c619ad01e35a1193747e2e86e4d..e3c3aee4afb9e70a439a8e7d9bddf6f7c8e47894 100644 |
--- a/chrome/common/devtools_messages_internal.h |
+++ b/chrome/common/devtools_messages_internal.h |
@@ -43,15 +43,22 @@ |
// This file describes developer tools message types. |
#include "ipc/ipc_message_macros.h" |
-#include "webkit/glue/devtools_message_data.h" |
// These are messages sent from DevToolsAgent to DevToolsClient through the |
// browser. |
IPC_BEGIN_MESSAGES(DevToolsClient) |
- // Sends glue-level Rpc message to the client. |
- IPC_MESSAGE_CONTROL1(DevToolsClientMsg_RpcMessage, |
- DevToolsMessageData /* message data */) |
+ // WebKit-level transport. |
+ IPC_MESSAGE_CONTROL1(DevToolsClientMsg_DispatchOnInspectorFrontend, |
+ std::string /* message */) |
+ |
+ // Legacy debugger output message. |
+ IPC_MESSAGE_CONTROL1(DevToolsClientMsg_DebuggerOutput, |
+ std::string /* message */) |
+ |
+ // Legacy APU dispatch message. |
+ IPC_MESSAGE_CONTROL1(DevToolsClientMsg_DispatchToAPU, |
+ std::string /* message */) |
IPC_END_MESSAGES(DevToolsClient) |
@@ -68,9 +75,9 @@ IPC_BEGIN_MESSAGES(DevToolsAgent) |
// Tells agent that there is no longer a client host connected to it. |
IPC_MESSAGE_CONTROL0(DevToolsAgentMsg_Detach) |
- // Sends glue-level Rpc message to the agent. |
- IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_RpcMessage, |
- DevToolsMessageData /* message data */) |
+ // WebKit-level transport. |
+ IPC_MESSAGE_CONTROL1(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 |