diff options
Diffstat (limited to 'components/net/data_loader.rs')
-rw-r--r-- | components/net/data_loader.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/net/data_loader.rs b/components/net/data_loader.rs index 28134d43d97..ee556b0d645 100644 --- a/components/net/data_loader.rs +++ b/components/net/data_loader.rs @@ -2,14 +2,12 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use hyper::mime::Mime; use mime_classifier::MIMEClassifier; use net_traits::ProgressMsg::{Payload, Done}; use net_traits::{LoadData, Metadata, LoadConsumer}; use resource_task::start_sending; - use rustc_serialize::base64::FromBase64; - -use hyper::mime::Mime; use std::sync::Arc; use url::SchemeData; use url::percent_encoding::percent_decode; |