diff options
Diffstat (limited to 'components/shared/net/lib.rs')
-rw-r--r-- | components/shared/net/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/shared/net/lib.rs b/components/shared/net/lib.rs index b6c44cad75f..c2c447d503e 100644 --- a/components/shared/net/lib.rs +++ b/components/shared/net/lib.rs @@ -12,14 +12,14 @@ use std::thread; use base::cross_process_instant::CrossProcessInstant; use base::id::HistoryStateId; use cookie::Cookie; -use crossbeam_channel::{unbounded, Receiver, Sender}; +use crossbeam_channel::{Receiver, Sender, unbounded}; use headers::{ContentType, HeaderMapExt, ReferrerPolicy as ReferrerPolicyHeader}; -use http::{header, Error as HttpError, HeaderMap, HeaderValue, StatusCode}; +use http::{Error as HttpError, HeaderMap, HeaderValue, StatusCode, header}; use hyper_serde::Serde; use hyper_util::client::legacy::Error as HyperError; +use ipc_channel::Error as IpcError; use ipc_channel::ipc::{self, IpcReceiver, IpcSender}; use ipc_channel::router::ROUTER; -use ipc_channel::Error as IpcError; use malloc_size_of::malloc_size_of_is_0; use malloc_size_of_derive::MallocSizeOf; use mime::Mime; |