aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/layout_interface.rs
diff options
context:
space:
mode:
authorTim Kuehn <tkuehn@cmu.edu>2013-07-12 20:19:48 -0700
committerTim Kuehn <tkuehn@cmu.edu>2013-07-29 11:03:17 -0700
commite9888b299c0af0f57919535ec7cf4d30e23ece5a (patch)
tree275ab0246f9408545ee588bcd3d3863e5d525357 /src/components/script/layout_interface.rs
parenteaa20edcd7c2097dd086014ae4193426fdf3fab6 (diff)
downloadservo-e9888b299c0af0f57919535ec7cf4d30e23ece5a.tar.gz
servo-e9888b299c0af0f57919535ec7cf4d30e23ece5a.zip
structural changes to support Iframes
Diffstat (limited to 'src/components/script/layout_interface.rs')
-rw-r--r--src/components/script/layout_interface.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/script/layout_interface.rs b/src/components/script/layout_interface.rs
index 766c728067b..9c9f27328c6 100644
--- a/src/components/script/layout_interface.rs
+++ b/src/components/script/layout_interface.rs
@@ -7,8 +7,7 @@
/// from layout.
use dom::node::{AbstractNode, ScriptView, LayoutView};
-use script_task::{ScriptMsg, ScriptChan};
-
+use script_task::{ScriptChan};
use std::comm::{Chan, SharedChan};
use geom::rect::Rect;
use geom::size::Size2D;
@@ -32,9 +31,6 @@ pub enum Msg {
/// FIXME(pcwalton): As noted below, this isn't very type safe.
QueryMsg(LayoutQuery),
- /// Routes a message (usually from the compositor) to the appropriate script task
- RouteScriptMsg(ScriptMsg),
-
/// Requests that the layout task shut down and exit.
ExitMsg,
}