mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +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 websocket;
|
||||
|
||||
pub mod about_loader;
|
||||
pub mod blob_loader;
|
||||
mod about_loader;
|
||||
mod blob_loader;
|
||||
pub mod chrome_loader;
|
||||
pub mod connector;
|
||||
pub mod content_blocker;
|
||||
mod connector;
|
||||
mod content_blocker;
|
||||
pub mod cookie;
|
||||
pub mod cookie_storage;
|
||||
mod data_loader;
|
||||
pub mod file_loader;
|
||||
mod file_loader;
|
||||
pub mod filemanager_thread;
|
||||
pub mod hsts;
|
||||
pub mod http_loader;
|
||||
pub mod image_cache_thread;
|
||||
pub mod mime_classifier;
|
||||
pub mod resource_thread;
|
||||
pub mod storage_thread;
|
||||
pub mod websocket_loader;
|
||||
mod storage_thread;
|
||||
mod websocket_loader;
|
||||
|
||||
/// An implementation of the [Fetch specification](https://fetch.spec.whatwg.org/)
|
||||
pub mod fetch {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue