Bug 1946184 - Fix computing the CSD margin right after calling HideWindowChrome(...
[gecko.git] / toolkit / components / bitsdownload / src / bits_interface / task / mod.rs
blobb6b96d887b5a1c7a7da980e7f6b175a0f6f2e68b
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 mod from_threadbound;
6 use super::{action, dispatch_callback, error, request::BitsRequest, string, BitsService};
8 mod client;
9 pub use self::client::ClientInitData;
11 mod service_task;
12 pub use self::service_task::{MonitorDownloadTask, StartDownloadTask};
14 mod request_task;
15 pub use self::request_task::{
16     CancelTask, ChangeMonitorIntervalTask, CompleteTask, Priority, ResumeTask,
17     SetNoProgressTimeoutTask, SetPriorityTask, SuspendTask,