diff options
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 { |