OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Developer tools consist of the following parts: | 5 // Developer tools consist of the following parts: |
6 // | 6 // |
7 // DevToolsAgent lives in the renderer of an inspected page and provides access | 7 // 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. | 8 // to the pages resources, DOM, v8 etc. by means of IPC messages. |
9 // | 9 // |
10 // DevToolsClient is a thin delegate that lives in the tools front-end | 10 // DevToolsClient is a thin delegate that lives in the tools front-end |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 std::string /* name */, | 146 std::string /* name */, |
147 std::string /* value */) | 147 std::string /* value */) |
148 | 148 |
149 | 149 |
150 //----------------------------------------------------------------------------- | 150 //----------------------------------------------------------------------------- |
151 // These are messages sent from the inspected page renderer to the worker | 151 // These are messages sent from the inspected page renderer to the worker |
152 // renderer. | 152 // renderer. |
153 | 153 |
154 IPC_MESSAGE_ROUTED0(WorkerDevToolsAgentMsg_Attach) | 154 IPC_MESSAGE_ROUTED0(WorkerDevToolsAgentMsg_Attach) |
155 IPC_MESSAGE_ROUTED0(WorkerDevToolsAgentMsg_Detach) | 155 IPC_MESSAGE_ROUTED0(WorkerDevToolsAgentMsg_Detach) |
156 IPC_MESSAGE_ROUTED1(WorkerDevToolsAgentMsg_DispatchOnInspectorBackend, | |
157 std::string /* message */) | |
OLD | NEW |