diff options
author | Gregory Terzian <gterzian@users.noreply.github.com> | 2019-11-17 14:37:45 +0800 |
---|---|---|
committer | Gregory Terzian <gterzian@users.noreply.github.com> | 2019-11-19 14:32:21 +0800 |
commit | 50a7111eb65155fc7a0bdb1646c4a2e0ebdd8f90 (patch) | |
tree | 503c793b58480822a9e74e064ec4876f3e74e9fe /components/script/dom/window.rs | |
parent | d553158e95cd5988eeb3e32310c11971c0450449 (diff) | |
download | servo-50a7111eb65155fc7a0bdb1646c4a2e0ebdd8f90.tar.gz servo-50a7111eb65155fc7a0bdb1646c4a2e0ebdd8f90.zip |
impl timer-task-source, dedicated time-out mechanism for service-worker
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 87c80ce62d0..bac74a21a15 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -106,8 +106,7 @@ use script_layout_interface::{PendingImageState, TrustedNodeAddress}; use script_traits::webdriver_msg::{WebDriverJSError, WebDriverJSResult}; use script_traits::{ConstellationControlMsg, DocumentState, HistoryEntryReplacement, LoadData}; use script_traits::{ - ScriptMsg, ScriptToConstellationChan, ScrollState, StructuredSerializedData, TimerEvent, - TimerEventId, + ScriptMsg, ScriptToConstellationChan, ScrollState, StructuredSerializedData, TimerEventId, }; use script_traits::{TimerSchedulerMsg, WindowSizeData, WindowSizeType}; use selectors::attr::CaseSensitivity; @@ -2186,7 +2185,6 @@ impl Window { constellation_chan: ScriptToConstellationChan, control_chan: IpcSender<ConstellationControlMsg>, scheduler_chan: IpcSender<TimerSchedulerMsg>, - timer_event_chan: IpcSender<TimerEvent>, layout_chan: Sender<Msg>, pipelineid: PipelineId, parent_info: Option<PipelineId>, @@ -2229,7 +2227,6 @@ impl Window { constellation_chan, scheduler_chan, resource_threads, - timer_event_chan, origin, microtask_queue, is_headless, |