aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/servo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/main/servo.rs')
-rw-r--r--src/components/main/servo.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/main/servo.rs b/src/components/main/servo.rs
index aae08a011d4..18588521a8b 100644
--- a/src/components/main/servo.rs
+++ b/src/components/main/servo.rs
@@ -63,7 +63,7 @@ use servo_net::image_cache_task::{ImageCacheTask, SyncImageCacheTask};
#[cfg(not(test))]
use servo_net::resource_task::ResourceTask;
#[cfg(not(test))]
-use servo_util::time::Profiler;
+use servo_util::time::TimeProfiler;
#[cfg(not(test))]
use servo_util::memory::MemoryProfiler;
@@ -170,11 +170,11 @@ pub fn run(opts: opts::Opts) {
let mut pool = green::SchedPool::new(pool_config);
let (compositor_port, compositor_chan) = CompositorChan::new();
- let profiler_chan = Profiler::create(opts.profiler_period);
+ let time_profiler_chan = TimeProfiler::create(opts.time_profiler_period);
let memory_profiler_chan = MemoryProfiler::create(opts.memory_profiler_period);
let opts_clone = opts.clone();
- let profiler_chan_clone = profiler_chan.clone();
+ let time_profiler_chan_clone = time_profiler_chan.clone();
let (result_chan, result_port) = channel();
pool.spawn(TaskOpts::new(), proc() {
@@ -193,7 +193,7 @@ pub fn run(opts: opts::Opts) {
opts,
resource_task,
image_cache_task,
- profiler_chan_clone);
+ time_profiler_chan_clone);
// Send the URL command to the constellation.
for filename in opts.urls.iter() {
@@ -220,7 +220,7 @@ pub fn run(opts: opts::Opts) {
CompositorTask::create(opts,
compositor_port,
constellation_chan,
- profiler_chan,
+ time_profiler_chan,
memory_profiler_chan);
pool.shutdown();