mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Moved CompositorMsg enum into compositing crate.
moved from components/msg/constellation_msg.rs to components/compositing/lib.rs dependencies on compositing crate added in ports/cef/Cargo.lock
This commit is contained in:
parent
996c0a60b8
commit
729812f383
11 changed files with 47 additions and 35 deletions
|
@ -8,6 +8,7 @@
|
|||
#![feature(ip_addr, plugin)]
|
||||
#![plugin(plugins)]
|
||||
|
||||
extern crate compositing;
|
||||
extern crate hyper;
|
||||
extern crate image;
|
||||
extern crate ipc_channel;
|
||||
|
@ -23,11 +24,11 @@ extern crate webdriver;
|
|||
|
||||
mod keys;
|
||||
|
||||
use compositing::CompositorMsg as ConstellationMsg;
|
||||
use hyper::method::Method::{self, Post};
|
||||
use image::{DynamicImage, ImageFormat, RgbImage};
|
||||
use ipc_channel::ipc::{self, IpcReceiver, IpcSender};
|
||||
use keys::keycodes_to_keys;
|
||||
use msg::constellation_msg::CompositorMsg as ConstellationMsg;
|
||||
use msg::constellation_msg::{FrameId, LoadData, PipelineId};
|
||||
use msg::constellation_msg::{NavigationDirection, PixelFormat, WebDriverCommandMsg};
|
||||
use msg::webdriver_msg::{LoadStatus, WebDriverFrameId, WebDriverJSError, WebDriverJSResult, WebDriverScriptCommand};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue