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

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

Issue 7248076: DevTools: add initial support for shared workers debugging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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 */)
OLDNEW
« no previous file with comments | « content/browser/worker_host/worker_process_host.cc ('k') | content/renderer/worker_devtools_agent_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698