Move net_error_list from net to net_traits. Fixes #7050.

This commit is contained in:
Connor Imes 2015-08-06 16:11:20 -05:00
parent 95269bba39
commit b526214a3d
19 changed files with 19 additions and 27 deletions

View file

@ -22,9 +22,6 @@ path = "../script_traits"
[dependencies.msg]
path = "../msg"
[dependencies.net]
path = "../net"
[dependencies.profile_traits]
path = "../profile_traits"

View file

@ -23,7 +23,6 @@ extern crate offscreen_gl_context;
extern crate png;
extern crate script_traits;
extern crate msg;
extern crate net;
extern crate num;
#[macro_use]
extern crate profile_traits;

View file

@ -12,7 +12,7 @@ use euclid::size::TypedSize2D;
use layers::geometry::DevicePixel;
use layers::platform::surface::NativeDisplay;
use msg::constellation_msg::{Key, KeyState, KeyModifiers};
use net::net_error_list::NetError;
use net_traits::net_error_list::NetError;
use script_traits::MouseButton;
use url::Url;
use util::cursor::Cursor;