aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/lib.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-11-02 15:48:23 +0100
committerMs2ger <Ms2ger@gmail.com>2016-11-24 11:46:24 +0100
commitfb1279ec3a97c16b17ee9ae3add69152029a4bc0 (patch)
treeecdaf182c5a1748a38238f5e70b5885e531a81bd /components/net/lib.rs
parentce24edc2b363389c3af138622e5ac88d1dd09d2c (diff)
downloadservo-fb1279ec3a97c16b17ee9ae3add69152029a4bc0.tar.gz
servo-fb1279ec3a97c16b17ee9ae3add69152029a4bc0.zip
Remove CoreResourceMsg::Load.
Also remove now-dead code that rustc warns about. It turns out that we lost support for some of our custom URL schemes; I intend to reimplement them, but I believe this will be significantly easier to do once the legacy code is out of the way.
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r--components/net/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs
index f6c85a4949c..e5f3951d542 100644
--- a/components/net/lib.rs
+++ b/components/net/lib.rs
@@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(box_syntax)]
-#![feature(fnbox)]
#![feature(mpsc_select)]
#![feature(plugin)]
#![feature(proc_macro)]
@@ -18,7 +17,6 @@ extern crate content_blocker as content_blocker_parser;
extern crate cookie as cookie_rs;
extern crate devtools_traits;
extern crate flate2;
-extern crate fnv;
extern crate hyper;
extern crate hyper_serde;
extern crate immeta;
@@ -49,7 +47,6 @@ extern crate uuid;
extern crate webrender_traits;
extern crate websocket;
-mod about_loader;
mod blob_loader;
mod chrome_loader;
mod connector;
@@ -57,7 +54,6 @@ mod content_blocker;
pub mod cookie;
pub mod cookie_storage;
mod data_loader;
-mod file_loader;
pub mod filemanager_thread;
pub mod hsts;
mod http_loader;