Rename MIMEClassifier to match Rust acronym naming conventions.

e.g. `std::net::TcpStream`
This commit is contained in:
Corey Farwell 2016-07-02 14:53:53 -04:00
parent 749fe986aa
commit 6c02a576cf
11 changed files with 46 additions and 46 deletions

View file

@ -36,12 +36,12 @@ fn assert_parse(url: &'static str,
charset: Option<String>,
data: Option<Vec<u8>>) {
use net::data_loader::load;
use net::mime_classifier::MIMEClassifier;
use net::mime_classifier::MimeClassifier;
use net::resource_thread::CancellationListener;
use std::sync::Arc;
let (start_chan, start_port) = ipc::channel().unwrap();
let classifier = Arc::new(MIMEClassifier::new());
let classifier = Arc::new(MimeClassifier::new());
load(LoadData::new(LoadContext::Browsing, Url::parse(url).unwrap(), &DataLoadTest),
Channel(start_chan),
classifier, CancellationListener::new(None));