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;

View file

@ -33,7 +33,6 @@ pub mod data_loader;
pub mod cookie;
pub mod cookie_storage;
pub mod image_cache_task;
pub mod net_error_list;
pub mod pub_domains;
pub mod resource_task;
pub mod hsts;

View file

@ -40,6 +40,7 @@ use std::thread;
pub mod hosts;
pub mod image_cache_task;
pub mod net_error_list;
pub mod storage_task;
pub static IPV4_REGEX: Regex = regex!(

View file

@ -181,7 +181,6 @@ dependencies = [
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
"net 0.0.1",
"net_traits 0.0.1",
"num 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
"offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)",
@ -567,7 +566,7 @@ dependencies = [
"layers 0.1.0 (git+https://github.com/servo/rust-layers)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
"net 0.0.1",
"net_traits 0.0.1",
"script_traits 0.0.1",
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",