diff options
author | Josh Matthews <josh@joshmatthews.net> | 2016-05-04 18:42:57 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2016-05-18 08:02:42 -0500 |
commit | 9e8cf19e51d5ff1f7c8aa8d5c2f8ccc5d74531ca (patch) | |
tree | eb29fc64b6fe098187788017bc765b7feb15b2ef /components/script/dom/worker.rs | |
parent | 36df00ae96feba73ab32847fda8bec3260c4aa11 (diff) | |
download | servo-9e8cf19e51d5ff1f7c8aa8d5c2f8ccc5d74531ca.tar.gz servo-9e8cf19e51d5ff1f7c8aa8d5c2f8ccc5d74531ca.zip |
Add timeline markers for HTTP requests, JS evaluation, and HTML parsing.
Diffstat (limited to 'components/script/dom/worker.rs')
-rw-r--r-- | components/script/dom/worker.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/worker.rs b/components/script/dom/worker.rs index 1c7fc6def0d..1f66625b7b9 100644 --- a/components/script/dom/worker.rs +++ b/components/script/dom/worker.rs @@ -102,6 +102,7 @@ impl Worker { let init = WorkerGlobalScopeInit { resource_thread: resource_thread, mem_profiler_chan: global.mem_profiler_chan().clone(), + time_profiler_chan: global.time_profiler_chan().clone(), to_devtools_sender: global.devtools_chan(), from_devtools_sender: optional_sender, constellation_chan: constellation_chan, |