diff options
Diffstat (limited to 'components/servo/lib.rs')
-rw-r--r-- | components/servo/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs index ef2b1b320c5..c41b5df01af 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -82,6 +82,7 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static { let opts_clone = opts.clone(); let time_profiler_chan_clone = time_profiler_chan.clone(); + let memory_profiler_chan_clone = memory_profiler_chan.clone(); let (result_chan, result_port) = channel(); let compositor_proxy_for_constellation = compositor_proxy.clone_compositor_proxy(); @@ -109,6 +110,7 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static { image_cache_task, font_cache_task, time_profiler_chan_clone, + memory_profiler_chan_clone, devtools_chan, storage_task); |