| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_COMMON_DEVTOOLS_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_DEVTOOLS_MESSAGES_H_ |
| 7 |
| 5 // Developer tools consist of the following parts: | 8 // Developer tools consist of the following parts: |
| 6 // | 9 // |
| 7 // DevToolsAgent lives in the renderer of an inspected page and provides access | 10 // DevToolsAgent lives in the renderer of an inspected page and provides access |
| 8 // to the pages resources, DOM, v8 etc. by means of IPC messages. | 11 // to the pages resources, DOM, v8 etc. by means of IPC messages. |
| 9 // | 12 // |
| 10 // DevToolsClient is a thin delegate that lives in the tools front-end | 13 // DevToolsClient is a thin delegate that lives in the tools front-end |
| 11 // renderer and converts IPC messages to frontend method calls and allows the | 14 // renderer and converts IPC messages to frontend method calls and allows the |
| 12 // frontend to send messages to the DevToolsAgent. | 15 // frontend to send messages to the DevToolsAgent. |
| 13 // | 16 // |
| 14 // All the messages are routed through browser process. There is a | 17 // All the messages are routed through browser process. There is a |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 IPC_MESSAGE_ROUTED1(DevToolsMsg_SetupDevToolsClient, | 131 IPC_MESSAGE_ROUTED1(DevToolsMsg_SetupDevToolsClient, |
| 129 std::string /* compatibility script */) | 132 std::string /* compatibility script */) |
| 130 | 133 |
| 131 | 134 |
| 132 //----------------------------------------------------------------------------- | 135 //----------------------------------------------------------------------------- |
| 133 // These are messages sent from the renderer to the browser. | 136 // These are messages sent from the renderer to the browser. |
| 134 | 137 |
| 135 // Transport from Inspector frontend to frontend host. | 138 // Transport from Inspector frontend to frontend host. |
| 136 IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder, | 139 IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder, |
| 137 std::string /* message */) | 140 std::string /* message */) |
| 141 |
| 142 #endif // CONTENT_COMMON_DEVTOOLS_MESSAGES_H_ |
| OLD | NEW |