diff options
author | Tomas Cernaj <tomas@cernaj.de> | 2015-12-09 20:50:11 +0100 |
---|---|---|
committer | Tomas Cernaj <tomas@cernaj.de> | 2015-12-09 20:50:11 +0100 |
commit | 5507be2653d085245b8bf33be976653ab2378751 (patch) | |
tree | 3d069fd126da21dfb4f7ab0455ff768254ed0a2f /components/script/dom/htmlbodyelement.rs | |
parent | 8ba470d79fadf8787eb139af9047b0b4a10fe25c (diff) | |
download | servo-5507be2653d085245b8bf33be976653ab2378751.tar.gz servo-5507be2653d085245b8bf33be976653ab2378751.zip |
Move ScriptMsg from msg crate into script_traits
Diffstat (limited to 'components/script/dom/htmlbodyelement.rs')
-rw-r--r-- | components/script/dom/htmlbodyelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlbodyelement.rs b/components/script/dom/htmlbodyelement.rs index f7605ed5aa3..79c549fd55d 100644 --- a/components/script/dom/htmlbodyelement.rs +++ b/components/script/dom/htmlbodyelement.rs @@ -18,7 +18,7 @@ use dom::htmlelement::HTMLElement; use dom::node::{Node, document_from_node, window_from_node}; use dom::virtualmethods::VirtualMethods; use msg::constellation_msg::ConstellationChan; -use msg::constellation_msg::ScriptMsg as ConstellationMsg; +use script_traits::ScriptMsg as ConstellationMsg; use std::rc::Rc; use string_cache::Atom; use time; |