| Index: chrome/common/devtools_messages.h
|
| diff --git a/chrome/common/devtools_messages.h b/chrome/common/devtools_messages.h
|
| index e327576693110df95d8a523ded8a76d74a9c3ddf..b58e812c1e0dd6d1ad18ba624e6bc5d936260640 100644
|
| --- a/chrome/common/devtools_messages.h
|
| +++ b/chrome/common/devtools_messages.h
|
| @@ -82,6 +82,11 @@ IPC_MESSAGE_CONTROL0(DevToolsAgentMsg_FrontendLoaded)
|
| IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_DispatchOnInspectorBackend,
|
| std::string /* message */)
|
|
|
| +// WebKit-level transport for messages from WorkerInspectorController to
|
| +// InspectorController.
|
| +IPC_MESSAGE_ROUTED1(DevToolsAgentMsg_DispatchMessageFromWorker,
|
| + std::string /* message */)
|
| +
|
| // Send debugger command to the debugger agent. Debugger commands should
|
| // be handled on IO thread(while all other devtools messages are handled in
|
| // the render thread) to allow executing the commands when v8 is on a
|
| @@ -140,3 +145,13 @@ IPC_MESSAGE_ROUTED2(DevToolsHostMsg_SaveAs,
|
| IPC_MESSAGE_ROUTED2(DevToolsHostMsg_RuntimePropertyChanged,
|
| std::string /* name */,
|
| std::string /* value */)
|
| +
|
| +
|
| +//-----------------------------------------------------------------------------
|
| +// These are messages sent from the inspected page renderer to the worker
|
| +// renderer.
|
| +
|
| +IPC_MESSAGE_ROUTED0(WorkerDevToolsAgentMsg_Attach)
|
| +IPC_MESSAGE_ROUTED0(WorkerDevToolsAgentMsg_Detach)
|
| +IPC_MESSAGE_ROUTED1(WorkerDevToolsAgentMsg_DispatchOnInspectorBackend,
|
| + std::string /* message */)
|
|
|