summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/actions/threads.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/src/actions/threads.js')
-rw-r--r--devtools/client/debugger/src/actions/threads.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/devtools/client/debugger/src/actions/threads.js b/devtools/client/debugger/src/actions/threads.js
new file mode 100644
index 0000000000..1b4332827c
--- /dev/null
+++ b/devtools/client/debugger/src/actions/threads.js
@@ -0,0 +1,26 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
+
+import { createThread } from "../client/firefox/create";
+
+export function addTarget(targetFront) {
+ return { type: "INSERT_THREAD", newThread: createThread(targetFront) };
+}
+
+export function removeTarget(targetFront) {
+ return {
+ type: "REMOVE_THREAD",
+ threadActorID: targetFront.targetForm.threadActor,
+ };
+}
+
+export function toggleJavaScriptEnabled(enabled) {
+ return async ({ panel, dispatch, client }) => {
+ await client.toggleJavaScriptEnabled(enabled);
+ dispatch({
+ type: "TOGGLE_JAVASCRIPT_ENABLED",
+ value: enabled,
+ });
+ };
+}