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

Side by Side Diff: content/common/devtools_messages.h

Issue 2858043003: [DevTools] Pass session id in detach request (Closed)
Patch Set: test compile Created 3 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 unified diff | Download patch
« no previous file with comments | « content/child/shared_worker_devtools_agent.cc ('k') | content/public/renderer/render_frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 int /* session_id */) 83 int /* session_id */)
84 84
85 // Tells agent that a client host was disconnected from another agent and 85 // Tells agent that a client host was disconnected from another agent and
86 // connected to this one. 86 // connected to this one.
87 IPC_MESSAGE_ROUTED3(DevToolsAgentMsg_Reattach, 87 IPC_MESSAGE_ROUTED3(DevToolsAgentMsg_Reattach,
88 std::string /* host_id */, 88 std::string /* host_id */,
89 int /* session_id */, 89 int /* session_id */,
90 std::string /* agent_state */) 90 std::string /* agent_state */)
91 91
92 // Tells agent that there is no longer a client host connected to it. 92 // Tells agent that there is no longer a client host connected to it.
93 IPC_MESSAGE_ROUTED0(DevToolsAgentMsg_Detach) 93 IPC_MESSAGE_ROUTED1(DevToolsAgentMsg_Detach, int /* session_id */)
94 94
95 // WebKit-level transport. 95 // WebKit-level transport.
96 IPC_MESSAGE_ROUTED4(DevToolsAgentMsg_DispatchOnInspectorBackend, 96 IPC_MESSAGE_ROUTED4(DevToolsAgentMsg_DispatchOnInspectorBackend,
97 int /* session_id */, 97 int /* session_id */,
98 int /* call_id */, 98 int /* call_id */,
99 std::string /* method */, 99 std::string /* method */,
100 std::string /* message */) 100 std::string /* message */)
101 101
102 // Inspect element with the given coordinates. 102 // Inspect element with the given coordinates.
103 IPC_MESSAGE_ROUTED3(DevToolsAgentMsg_InspectElement, 103 IPC_MESSAGE_ROUTED3(DevToolsAgentMsg_InspectElement,
(...skipping 24 matching lines...) Expand all
128 IPC_MESSAGE_ROUTED1(DevToolsMsg_SetupDevToolsClient, 128 IPC_MESSAGE_ROUTED1(DevToolsMsg_SetupDevToolsClient,
129 std::string /* compatibility script */) 129 std::string /* compatibility script */)
130 130
131 131
132 //----------------------------------------------------------------------------- 132 //-----------------------------------------------------------------------------
133 // These are messages sent from the renderer to the browser. 133 // These are messages sent from the renderer to the browser.
134 134
135 // Transport from Inspector frontend to frontend host. 135 // Transport from Inspector frontend to frontend host.
136 IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder, 136 IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder,
137 std::string /* message */) 137 std::string /* message */)
OLDNEW
« no previous file with comments | « content/child/shared_worker_devtools_agent.cc ('k') | content/public/renderer/render_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698