diff options
Diffstat (limited to 'components/script/dom/paintworkletglobalscope.rs')
-rw-r--r-- | components/script/dom/paintworkletglobalscope.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/paintworkletglobalscope.rs b/components/script/dom/paintworkletglobalscope.rs index 3aa3869eb41..cdbcc2658bc 100644 --- a/components/script/dom/paintworkletglobalscope.rs +++ b/components/script/dom/paintworkletglobalscope.rs @@ -11,12 +11,12 @@ use std::thread; use std::time::Duration; use base::id::PipelineId; -use crossbeam_channel::{unbounded, Sender}; +use crossbeam_channel::{Sender, unbounded}; use dom_struct::dom_struct; use euclid::{Scale, Size2D}; use js::jsapi::{ - HandleValueArray, Heap, IsCallable, IsConstructor, JSAutoRealm, JSObject, - JS_ClearPendingException, JS_IsExceptionPending, NewArrayObject, Value, + HandleValueArray, Heap, IsCallable, IsConstructor, JS_ClearPendingException, + JS_IsExceptionPending, JSAutoRealm, JSObject, NewArrayObject, Value, }; use js::jsval::{JSVal, ObjectValue, UndefinedValue}; use js::rust::wrappers::{Call, Construct1}; |