| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
| 6 // header guard. | 6 // header guard. |
| 7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
| 8 | 8 |
| 9 // Developer tools consist of the following parts: | 9 // Developer tools consist of the following parts: |
| 10 // | 10 // |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 // | | 35 // | |
| 36 // v | 36 // v |
| 37 // --------------------------+-------- | 37 // --------------------------+-------- |
| 38 // | inspected page <--> DevToolsAgent | | 38 // | inspected page <--> DevToolsAgent | |
| 39 // | | | 39 // | | |
| 40 // | (inspected page renderer process) | | 40 // | (inspected page renderer process) | |
| 41 // ----------------------------------- | 41 // ----------------------------------- |
| 42 // | 42 // |
| 43 // This file describes developer tools message types. | 43 // This file describes developer tools message types. |
| 44 | 44 |
| 45 #include "chrome/common/ipc_message_macros.h" | 45 #include "ipc/ipc_message_macros.h" |
| 46 | 46 |
| 47 // These are messages sent from DevToolsAgent to DevToolsClient through the | 47 // These are messages sent from DevToolsAgent to DevToolsClient through the |
| 48 // browser. | 48 // browser. |
| 49 IPC_BEGIN_MESSAGES(DevToolsClient) | 49 IPC_BEGIN_MESSAGES(DevToolsClient) |
| 50 | 50 |
| 51 // Sends glue-level Rpc message to the client. | 51 // Sends glue-level Rpc message to the client. |
| 52 IPC_MESSAGE_CONTROL3(DevToolsClientMsg_RpcMessage, | 52 IPC_MESSAGE_CONTROL3(DevToolsClientMsg_RpcMessage, |
| 53 std::string /* class_name */, | 53 std::string /* class_name */, |
| 54 std::string /* method_name */, | 54 std::string /* method_name */, |
| 55 std::string /* raw_msg */) | 55 std::string /* raw_msg */) |
| (...skipping 24 matching lines...) Expand all Loading... |
| 80 // breakpoint. | 80 // breakpoint. |
| 81 IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_DebuggerCommand, | 81 IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_DebuggerCommand, |
| 82 std::string /* command */) | 82 std::string /* command */) |
| 83 | 83 |
| 84 // Inspect element with the given coordinates. | 84 // Inspect element with the given coordinates. |
| 85 IPC_MESSAGE_CONTROL2(DevToolsAgentMsg_InspectElement, | 85 IPC_MESSAGE_CONTROL2(DevToolsAgentMsg_InspectElement, |
| 86 int /* x */, | 86 int /* x */, |
| 87 int /* y */) | 87 int /* y */) |
| 88 | 88 |
| 89 IPC_END_MESSAGES(DevToolsAgent) | 89 IPC_END_MESSAGES(DevToolsAgent) |
| OLD | NEW |