mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Privatize some net modules.
This commit is contained in:
parent
8c35f93343
commit
697275dea3
1 changed files with 7 additions and 7 deletions
|
@ -47,23 +47,23 @@ extern crate uuid;
|
||||||
extern crate webrender_traits;
|
extern crate webrender_traits;
|
||||||
extern crate websocket;
|
extern crate websocket;
|
||||||
|
|
||||||
pub mod about_loader;
|
mod about_loader;
|
||||||
pub mod blob_loader;
|
mod blob_loader;
|
||||||
pub mod chrome_loader;
|
pub mod chrome_loader;
|
||||||
pub mod connector;
|
mod connector;
|
||||||
pub mod content_blocker;
|
mod content_blocker;
|
||||||
pub mod cookie;
|
pub mod cookie;
|
||||||
pub mod cookie_storage;
|
pub mod cookie_storage;
|
||||||
mod data_loader;
|
mod data_loader;
|
||||||
pub mod file_loader;
|
mod file_loader;
|
||||||
pub mod filemanager_thread;
|
pub mod filemanager_thread;
|
||||||
pub mod hsts;
|
pub mod hsts;
|
||||||
pub mod http_loader;
|
pub mod http_loader;
|
||||||
pub mod image_cache_thread;
|
pub mod image_cache_thread;
|
||||||
pub mod mime_classifier;
|
pub mod mime_classifier;
|
||||||
pub mod resource_thread;
|
pub mod resource_thread;
|
||||||
pub mod storage_thread;
|
mod storage_thread;
|
||||||
pub mod websocket_loader;
|
mod websocket_loader;
|
||||||
|
|
||||||
/// An implementation of the [Fetch specification](https://fetch.spec.whatwg.org/)
|
/// An implementation of the [Fetch specification](https://fetch.spec.whatwg.org/)
|
||||||
pub mod fetch {
|
pub mod fetch {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue