aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/layout_thread.rs
diff options
context:
space:
mode:
authorJohn DeSilva <desilvjo@umich.edu>2016-01-09 15:26:58 -0500
committerJohn DeSilva <desilvjo@umich.edu>2016-01-10 17:36:52 -0500
commitf32995543de85db093272fc53587dc7fc2203b18 (patch)
tree9023da2feb4f5822f2b0f481ec3432606e8f003e /components/layout/layout_thread.rs
parent85792d281964858d3a9ff4fa46e2c7cd8700c03f (diff)
downloadservo-f32995543de85db093272fc53587dc7fc2203b18.tar.gz
servo-f32995543de85db093272fc53587dc7fc2203b18.zip
Move Epoch to gfx_traits
Resolves #9222. Moved Epoch from components/msg/compositor_msg to components/gfx_traits/lib. Updated use statements to reflect the move.
Diffstat (limited to 'components/layout/layout_thread.rs')
-rw-r--r--components/layout/layout_thread.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/layout/layout_thread.rs b/components/layout/layout_thread.rs
index 668d08e2c85..86b86b2793d 100644
--- a/components/layout/layout_thread.rs
+++ b/components/layout/layout_thread.rs
@@ -27,7 +27,7 @@ use gfx::font;
use gfx::font_cache_thread::FontCacheThread;
use gfx::font_context;
use gfx::paint_thread::{LayoutToPaintMsg, PaintLayer};
-use gfx_traits::{color, LayerId, ScrollPolicy};
+use gfx_traits::{color, Epoch, LayerId, ScrollPolicy};
use incremental::{LayoutDamageComputation, REFLOW, REFLOW_ENTIRE_DOCUMENT, REPAINT};
use ipc_channel::ipc::{self, IpcReceiver, IpcSender};
use ipc_channel::router::ROUTER;
@@ -35,7 +35,6 @@ use layout_debug;
use layout_traits::LayoutThreadFactory;
use log;
use msg::ParseErrorReporter;
-use msg::compositor_msg::Epoch;
use msg::constellation_msg::{ConstellationChan, Failure, PipelineId};
use net_traits::image_cache_thread::{ImageCacheChan, ImageCacheResult, ImageCacheThread};
use parallel;