diff options
author | Maciej Skrzypkowski <m.skrzypkows@samsung.com> | 2016-01-13 13:36:28 +0100 |
---|---|---|
committer | Maciej Skrzypkowski <m.skrzypkows@samsung.com> | 2016-01-13 13:36:28 +0100 |
commit | e52c53a7f25bf4bd47c226b4a59d24d96094ca49 (patch) | |
tree | 2022b0962cc2860d95fec4be729014d3e4f6afe3 /components/gfx/paint_thread.rs | |
parent | 9c8382cbde73a2d5f57c4a8a65d4ae55c03fd990 (diff) | |
download | servo-e52c53a7f25bf4bd47c226b4a59d24d96094ca49.tar.gz servo-e52c53a7f25bf4bd47c226b4a59d24d96094ca49.zip |
Move FrameTreeId type to gfx_traits #9221
Diffstat (limited to 'components/gfx/paint_thread.rs')
-rw-r--r-- | components/gfx/paint_thread.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/gfx/paint_thread.rs b/components/gfx/paint_thread.rs index 799960cfd7a..12187a527cc 100644 --- a/components/gfx/paint_thread.rs +++ b/components/gfx/paint_thread.rs @@ -15,12 +15,11 @@ use euclid::rect::Rect; use euclid::size::Size2D; use font_cache_thread::FontCacheThread; use font_context::FontContext; -use gfx_traits::color; -use gfx_traits::{Epoch, LayerId, LayerKind, LayerProperties, PaintListener, PaintMsg as ConstellationMsg, ScrollPolicy}; +use gfx_traits::{Epoch, FrameTreeId, LayerId, LayerKind, LayerProperties}; +use gfx_traits::{PaintListener, PaintMsg as ConstellationMsg, ScrollPolicy, color}; use ipc_channel::ipc::IpcSender; use layers::layers::{BufferRequest, LayerBuffer, LayerBufferSet}; use layers::platform::surface::{NativeDisplay, NativeSurface}; -use msg::compositor_msg::FrameTreeId; use msg::constellation_msg::{ConstellationChan, Failure, PipelineId}; use paint_context::PaintContext; use profile_traits::mem::{self, ReportsChan}; |