Move LayoutRPC to script_layout_interface.

This commit is contained in:
Ms2ger 2016-06-16 02:07:57 +01:00
parent 68d603a6d0
commit 86bfd2cc9f
10 changed files with 122 additions and 92 deletions

View file

@ -14,17 +14,20 @@
#![plugin(heapsize_plugin)]
#![plugin(plugins)]
extern crate app_units;
#[allow(unused_extern_crates)]
#[macro_use]
extern crate bitflags;
extern crate canvas_traits;
extern crate core;
extern crate euclid;
extern crate gfx_traits;
extern crate heapsize;
extern crate ipc_channel;
extern crate libc;
extern crate msg;
extern crate range;
extern crate script_traits;
extern crate selectors;
#[macro_use(atom, ns)]
extern crate string_cache;
@ -32,6 +35,7 @@ extern crate style;
extern crate url;
pub mod restyle_damage;
pub mod rpc;
pub mod wrapper_traits;
use canvas_traits::CanvasMsg;