diff options
author | Brandon Fairchild <csbit32@gmail.com> | 2015-12-20 19:21:51 -0500 |
---|---|---|
committer | Brandon Fairchild <csbit32@gmail.com> | 2015-12-20 20:43:31 -0500 |
commit | 637afecec972c290dcfe036df8e3fc7ebaa2bc0d (patch) | |
tree | f9335f79930f15ecd42cc851a9ef0ccb9453016a /components/script/script_task.rs | |
parent | a900196b3f56fac46f86d8a8157a61f14fdca364 (diff) | |
download | servo-637afecec972c290dcfe036df8e3fc7ebaa2bc0d.tar.gz servo-637afecec972c290dcfe036df8e3fc7ebaa2bc0d.zip |
Move LayerKind and ScrollPolicy enums to gfx_traits
This also moves LayerId and LayerProperties to gfx_traits.
Fixes #8836.
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 94193b3077a..953bf3dacde 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -42,6 +42,7 @@ use dom::window::{ReflowReason, ScriptHelpers, Window}; use dom::worker::TrustedWorkerAddress; use euclid::Rect; use euclid::point::Point2D; +use gfx_traits::LayerId; use hyper::header::{ContentType, HttpDate}; use hyper::header::{Headers, LastModified}; use hyper::method::Method; @@ -61,7 +62,6 @@ use layout_interface::{ReflowQueryType}; use layout_interface::{self, LayoutChan, NewLayoutTaskInfo, ReflowGoal, ScriptLayoutChan}; use libc; use mem::heap_size_of_self_and_children; -use msg::compositor_msg::LayerId; use msg::constellation_msg::{ConstellationChan, LoadData}; use msg::constellation_msg::{MouseButton, MouseEventType, MozBrowserEvent, PipelineId}; use msg::constellation_msg::{PipelineNamespace}; |