mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Issue #7390 correct the order of mod declaration
This commit is contained in:
parent
e81e91207c
commit
6565e7b02f
11 changed files with 53 additions and 55 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue