summaryrefslogtreecommitdiff
path: root/devtools/client/framework/toolbox-process-window.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/framework/toolbox-process-window.js')
-rw-r--r--devtools/client/framework/toolbox-process-window.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/devtools/client/framework/toolbox-process-window.js b/devtools/client/framework/toolbox-process-window.js
index 87b3efa438..82edabe9c6 100644
--- a/devtools/client/framework/toolbox-process-window.js
+++ b/devtools/client/framework/toolbox-process-window.js
@@ -142,6 +142,16 @@ function evaluateTestScript(script, toolbox) {
function bindToolboxHandlers() {
gToolbox.once("destroyed", quitApp);
window.addEventListener("unload", onUnload);
+
+#ifdef XP_MACOSX
+ // Badge the dock icon to differentiate this process from the main application process.
+ updateBadgeText(false);
+
+ // Once the debugger panel opens listen for thread pause / resume.
+ gToolbox.getPanelWhenReady("jsdebugger").then(panel => {
+ setupThreadListeners(panel);
+ });
+#endif
}
function setupThreadListeners(panel) {