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

Unified Diff: chrome/common/devtools_messages_internal.h

Issue 115862: DevTools: pass class and method name as arguments to RPC messages (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | « chrome/browser/debugger/inspectable_tab_proxy.cc ('k') | chrome/renderer/devtools_agent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/devtools_messages_internal.h
===================================================================
--- chrome/common/devtools_messages_internal.h (revision 17071)
+++ chrome/common/devtools_messages_internal.h (working copy)
@@ -49,8 +49,10 @@
IPC_BEGIN_MESSAGES(DevToolsClient)
// Sends glue-level Rpc message to the client.
- IPC_MESSAGE_CONTROL1(DevToolsClientMsg_RpcMessage,
- std::string /* raw_msg */)
+ IPC_MESSAGE_CONTROL3(DevToolsClientMsg_RpcMessage,
+ std::string /* class_name */,
+ std::string /* method_name */,
+ std::string /* raw_msg */)
IPC_END_MESSAGES(DevToolsClient)
@@ -67,8 +69,10 @@
IPC_MESSAGE_CONTROL0(DevToolsAgentMsg_Detach)
// Sends glue-level Rpc message to the agent.
- IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_RpcMessage,
- std::string /* raw_msg */)
+ IPC_MESSAGE_CONTROL3(DevToolsAgentMsg_RpcMessage,
+ std::string /* class_name */,
+ std::string /* method_name */,
+ std::string /* raw_msg */)
// Send debugger command to the debugger agent. Debugger commands should
// be handled on IO thread(while all other devtools messages are handled in
« no previous file with comments | « chrome/browser/debugger/inspectable_tab_proxy.cc ('k') | chrome/renderer/devtools_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698