aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/timers.rs
diff options
context:
space:
mode:
authorGregory Terzian <gterzian@users.noreply.github.com>2019-10-18 23:37:31 +0800
committerGregory Terzian <gterzian@users.noreply.github.com>2019-10-20 23:42:34 +0800
commitc893c8955de7cdbbe38893057923fb2d95c84194 (patch)
tree98da3638643921b12df9e41e14239459bca5d457 /components/script/timers.rs
parent32eb858a6a0534d8acdd5184a50a22d90c18b2a8 (diff)
downloadservo-c893c8955de7cdbbe38893057923fb2d95c84194.tar.gz
servo-c893c8955de7cdbbe38893057923fb2d95c84194.zip
update timer scheduler to use crossbeam
Diffstat (limited to 'components/script/timers.rs')
-rw-r--r--components/script/timers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/timers.rs b/components/script/timers.rs
index 5534df60d45..f65d1013f48 100644
--- a/components/script/timers.rs
+++ b/components/script/timers.rs
@@ -285,7 +285,7 @@ impl OneshotTimers {
delay,
);
self.scheduler_chan
- .send(TimerSchedulerMsg::Request(request))
+ .send(TimerSchedulerMsg(request))
.unwrap();
}
}