summaryrefslogtreecommitdiffstats
path: root/chrome/common/devtools_messages_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/devtools_messages_internal.h')
-rw-r--r--chrome/common/devtools_messages_internal.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/devtools_messages_internal.h b/chrome/common/devtools_messages_internal.h
index be187a7..d80c0ed 100644
--- a/chrome/common/devtools_messages_internal.h
+++ b/chrome/common/devtools_messages_internal.h
@@ -86,6 +86,12 @@ IPC_BEGIN_MESSAGES(DevToolsAgent)
IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_DebuggerCommand,
std::string /* command */)
+ // This command is sent to debugger when user wants to pause script execution
+ // immediately. This message should be processed on the IO thread so that it
+ // can have effect even if the Renderer thread is busy with JavaScript
+ // execution.
+ IPC_MESSAGE_CONTROL0(DevToolsAgentMsg_DebuggerPauseScript)
+
// Inspect element with the given coordinates.
IPC_MESSAGE_CONTROL2(DevToolsAgentMsg_InspectElement,
int /* x */,