mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
cargo fix --edition
This commit is contained in:
parent
86f148fb97
commit
45f7199eee
503 changed files with 5038 additions and 5037 deletions
|
@ -7,22 +7,22 @@
|
|||
//! the script thread. The script thread contains a JobQueue, which stores all scheduled Jobs
|
||||
//! by multiple service worker clients in a Vec.
|
||||
|
||||
use dom::bindings::cell::DomRefCell;
|
||||
use dom::bindings::error::Error;
|
||||
use dom::bindings::refcounted::{Trusted, TrustedPromise};
|
||||
use dom::bindings::reflector::DomObject;
|
||||
use dom::bindings::root::Dom;
|
||||
use dom::client::Client;
|
||||
use dom::promise::Promise;
|
||||
use dom::serviceworkerregistration::ServiceWorkerRegistration;
|
||||
use dom::urlhelper::UrlHelper;
|
||||
use script_thread::ScriptThread;
|
||||
use crate::dom::bindings::cell::DomRefCell;
|
||||
use crate::dom::bindings::error::Error;
|
||||
use crate::dom::bindings::refcounted::{Trusted, TrustedPromise};
|
||||
use crate::dom::bindings::reflector::DomObject;
|
||||
use crate::dom::bindings::root::Dom;
|
||||
use crate::dom::client::Client;
|
||||
use crate::dom::promise::Promise;
|
||||
use crate::dom::serviceworkerregistration::ServiceWorkerRegistration;
|
||||
use crate::dom::urlhelper::UrlHelper;
|
||||
use crate::script_thread::ScriptThread;
|
||||
use servo_url::ServoUrl;
|
||||
use std::cmp::PartialEq;
|
||||
use std::collections::HashMap;
|
||||
use std::rc::Rc;
|
||||
use task_source::TaskSource;
|
||||
use task_source::dom_manipulation::DOMManipulationTaskSource;
|
||||
use crate::task_source::TaskSource;
|
||||
use crate::task_source::dom_manipulation::DOMManipulationTaskSource;
|
||||
|
||||
#[derive(Clone, Copy, Debug, JSTraceable, PartialEq)]
|
||||
pub enum JobType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue