summaryrefslogtreecommitdiffstats
path: root/chrome/common/devtools_messages_internal.h
diff options
context:
space:
mode:
authorpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-27 17:47:18 +0000
committerpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-27 17:47:18 +0000
commit7cb43d53404c33f90398ba6217dc9645400e9c8e (patch)
tree117f785d10699cc2730324443806f27a3a9b2f5d /chrome/common/devtools_messages_internal.h
parent0a9a881e2e81c841e44ecb411da102f8c8e30265 (diff)
downloadchromium_src-7cb43d53404c33f90398ba6217dc9645400e9c8e.zip
chromium_src-7cb43d53404c33f90398ba6217dc9645400e9c8e.tar.gz
chromium_src-7cb43d53404c33f90398ba6217dc9645400e9c8e.tar.bz2
DevTools: Remove base/values dependency from devtools.
Review URL: http://codereview.chromium.org/173480 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24623 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/devtools_messages_internal.h')
-rw-r--r--chrome/common/devtools_messages_internal.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/chrome/common/devtools_messages_internal.h b/chrome/common/devtools_messages_internal.h
index 4411a21..e139c6c 100644
--- a/chrome/common/devtools_messages_internal.h
+++ b/chrome/common/devtools_messages_internal.h
@@ -49,10 +49,12 @@
IPC_BEGIN_MESSAGES(DevToolsClient)
// Sends glue-level Rpc message to the client.
- IPC_MESSAGE_CONTROL3(DevToolsClientMsg_RpcMessage,
+ IPC_MESSAGE_CONTROL5(DevToolsClientMsg_RpcMessage,
std::string /* class_name */,
std::string /* method_name */,
- std::string /* raw_msg */)
+ std::string /* p1 */,
+ std::string /* p2 */,
+ std::string /* p3 */)
IPC_END_MESSAGES(DevToolsClient)
@@ -69,10 +71,12 @@ IPC_BEGIN_MESSAGES(DevToolsAgent)
IPC_MESSAGE_CONTROL0(DevToolsAgentMsg_Detach)
// Sends glue-level Rpc message to the agent.
- IPC_MESSAGE_CONTROL3(DevToolsAgentMsg_RpcMessage,
+ IPC_MESSAGE_CONTROL5(DevToolsAgentMsg_RpcMessage,
std::string /* class_name */,
std::string /* method_name */,
- std::string /* raw_msg */)
+ std::string /* p1 */,
+ std::string /* p2 */,
+ std::string /* p3 */)
// Send debugger command to the debugger agent. Debugger commands should
// be handled on IO thread(while all other devtools messages are handled in