diff options
author | Rahul Sharma <rsconceptx@gmail.com> | 2016-04-01 18:32:05 +0530 |
---|---|---|
committer | Rahul Sharma <rsconceptx@gmail.com> | 2016-04-06 12:46:49 +0530 |
commit | 2caa9a2a7618cbac49d85017af102a6658ea2596 (patch) | |
tree | e306d3e3a0fdef5aa79c936341268b891c2bd4e3 /components/script/dom/document.rs | |
parent | 0d0e08638da02922353fb165c4d4f3aff59c2ab0 (diff) | |
download | servo-2caa9a2a7618cbac49d85017af102a6658ea2596.tar.gz servo-2caa9a2a7618cbac49d85017af102a6658ea2596.zip |
refactors entities from script_thread into script_runtime
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r-- | components/script/dom/document.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index c99099e04f9..367ffb11d0c 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -94,7 +94,8 @@ use net_traits::CookieSource::NonHTTP; use net_traits::response::HttpsState; use net_traits::{AsyncResponseTarget, PendingAsyncLoad}; use num::ToPrimitive; -use script_thread::{MainThreadScriptChan, MainThreadScriptMsg, Runnable, ScriptChan}; +use script_runtime::ScriptChan; +use script_thread::{MainThreadScriptChan, MainThreadScriptMsg, Runnable}; use script_traits::UntrustedNodeAddress; use script_traits::{AnimationState, MouseButton, MouseEventType, MozBrowserEvent}; use script_traits::{ScriptMsg as ConstellationMsg, ScriptToCompositorMsg}; |