diff options
Diffstat (limited to 'components/script/dom/workletglobalscope.rs')
-rw-r--r-- | components/script/dom/workletglobalscope.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/script/dom/workletglobalscope.rs b/components/script/dom/workletglobalscope.rs index 90fa5bd0115..995014cfc1a 100644 --- a/components/script/dom/workletglobalscope.rs +++ b/components/script/dom/workletglobalscope.rs @@ -15,7 +15,6 @@ use crate::script_thread::MainThreadScriptMsg; use crossbeam_channel::Sender; use devtools_traits::ScriptToDevtoolsControlMsg; use dom_struct::dom_struct; -use ipc_channel::ipc; use ipc_channel::ipc::IpcSender; use js::jsval::UndefinedValue; use js::rust::Runtime; @@ -55,8 +54,6 @@ impl WorkletGlobalScope { executor: WorkletExecutor, init: &WorkletGlobalScopeInit, ) -> Self { - // Any timer events fired on this global are ignored. - let (timer_event_chan, _) = ipc::channel().unwrap(); let script_to_constellation_chan = ScriptToConstellationChan { sender: init.to_constellation_sender.clone(), pipeline_id, @@ -70,7 +67,6 @@ impl WorkletGlobalScope { script_to_constellation_chan, init.scheduler_chan.clone(), init.resource_threads.clone(), - timer_event_chan, MutableOrigin::new(ImmutableOrigin::new_opaque()), Default::default(), init.is_headless, |