From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../backgroundtasks/nsIBackgroundTasksRunner.idl | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 toolkit/components/backgroundtasks/nsIBackgroundTasksRunner.idl (limited to 'toolkit/components/backgroundtasks/nsIBackgroundTasksRunner.idl') diff --git a/toolkit/components/backgroundtasks/nsIBackgroundTasksRunner.idl b/toolkit/components/backgroundtasks/nsIBackgroundTasksRunner.idl new file mode 100644 index 0000000000..ebc13494f1 --- /dev/null +++ b/toolkit/components/backgroundtasks/nsIBackgroundTasksRunner.idl @@ -0,0 +1,40 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* 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/. */ + +#include "nsISupports.idl" + +[scriptable, uuid(8cd92fce-1ec3-470a-ad09-c0de9d98497e)] +interface nsIBackgroundTasksRunner : nsISupports +{ + /** + * Runs a background process in an independent detached process. Any process + * opened by this function can outlive the main process. + * + * This function is thread-safe. + * + * XXX: The use of base::LaunchApp can make a zombie process on Unix. + * See bug 1802559. + * + * @param aTaskName The name of the background task. + * (BackgroundTask_{name}.sys.mjs) + * @param aArgs The arguments that will be passed to the task process. Any + * needed escape will happen automatically. + */ + void runInDetachedProcess(in ACString aTaskName, + in Array aCommandLine); + + /** + * Runs removeDirectory background task. + * `toolkit.background_tasks.remove_directory.testing.sleep_ms` can be set to + * make it wait for the given milliseconds for testing purpose. + * + * See BackgroundTask_removeDirectory.sys.mjs for details about the arguments. + */ + void removeDirectoryInDetachedProcess(in ACString aParentDirPath, + in ACString aChildDirName, + in ACString aSecondsToWait, + in ACString aOtherFoldersSuffix, + [optional] in ACString aMetricsId); +}; -- cgit v1.2.3