Move ChromeToPaintMsg to gfx_traits.

This allows compositing not to depend on gfx.
This commit is contained in:
Ms2ger 2016-06-05 14:01:07 +02:00
parent 86d65b6064
commit 7d1421bd83
9 changed files with 29 additions and 27 deletions

View file

@ -11,7 +11,8 @@ use euclid::size::TypedSize2D;
#[cfg(not(target_os = "windows"))]
use gaol;
use gfx::font_cache_thread::FontCacheThread;
use gfx::paint_thread::{ChromeToPaintMsg, LayoutToPaintMsg, PaintThread};
use gfx::paint_thread::{LayoutToPaintMsg, PaintThread};
use gfx_traits::ChromeToPaintMsg;
use ipc_channel::ipc::{self, IpcReceiver, IpcSender};
use ipc_channel::router::ROUTER;
use layers::geometry::DevicePixel;