diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-12-14 10:37:58 -0600 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-12-14 18:04:37 -0600 |
commit | 9be4fd56ce5467ce6d0e48c6efda9eb26f40eb7a (patch) | |
tree | 93d46ce512414914439920505f41467ffbc17e95 /components/script/script_runtime.rs | |
parent | 01b6ad55bd435bc4f58e5eab2e8adb7e4febb50a (diff) | |
download | servo-9be4fd56ce5467ce6d0e48c6efda9eb26f40eb7a.tar.gz servo-9be4fd56ce5467ce6d0e48c6efda9eb26f40eb7a.zip |
Removed util.
Diffstat (limited to 'components/script/script_runtime.rs')
-rw-r--r-- | components/script/script_runtime.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/script_runtime.rs b/components/script/script_runtime.rs index 00e7d3a198e..a21f96c5890 100644 --- a/components/script/script_runtime.rs +++ b/components/script/script_runtime.rs @@ -25,6 +25,8 @@ use js::rust::Runtime; use msg::constellation_msg::PipelineId; use profile_traits::mem::{Report, ReportKind, ReportsChan}; use script_thread::{Runnable, STACK_ROOTS, trace_thread}; +use servo_config::opts; +use servo_config::prefs::PREFS; use std::cell::Cell; use std::io::{Write, stdout}; use std::marker::PhantomData; @@ -35,8 +37,6 @@ use std::ptr; use std::rc::Rc; use style::thread_state; use time::{Tm, now}; -use util::opts; -use util::prefs::PREFS; /// Common messages used to control the event loops in both the script and the worker pub enum CommonScriptMsg { |