aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/lib.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-09-18 14:44:48 -0600
committerbors-servo <metajack+bors@gmail.com>2015-09-18 14:44:48 -0600
commitd1b85de762c0193276010a019f931526c34c04ce (patch)
tree0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/net/lib.rs
parent9b939546a660fb24985e54aba1c2c47d1cf057a4 (diff)
parent6565e7b02fafea933e27e59bed1db876b56ac005 (diff)
downloadservo-d1b85de762c0193276010a019f931526c34c04ce.tar.gz
servo-d1b85de762c0193276010a019f931526c34c04ce.zip
Auto merge of #7680 - Mylainos:Issue-#7390, r=metajack
fixes #7390 : tidy now check the order of mod declarations even whith attribute <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7680) <!-- Reviewable:end -->
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r--components/net/lib.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs
index 5c9378114fe..c0077d2e0f0 100644
--- a/components/net/lib.rs
+++ b/components/net/lib.rs
@@ -27,22 +27,22 @@ extern crate url;
extern crate uuid;
pub mod about_loader;
-pub mod file_loader;
-pub mod http_loader;
-pub mod data_loader;
pub mod cookie;
pub mod cookie_storage;
+pub mod data_loader;
+pub mod file_loader;
+pub mod hsts;
+pub mod http_loader;
pub mod image_cache_task;
+pub mod mime_classifier;
pub mod pub_domains;
pub mod resource_task;
-pub mod hsts;
pub mod storage_task;
-pub mod mime_classifier;
/// An implementation of the [Fetch spec](https://fetch.spec.whatwg.org/)
pub mod fetch {
#![allow(dead_code, unused)] // XXXManishearth this is only temporary until the Fetch mod starts being used
+ pub mod cors_cache;
pub mod request;
pub mod response;
- pub mod cors_cache;
}