From a9bb6f69b32018c245e05a79011114653fe8f5e0 Mon Sep 17 00:00:00 2001 From: "darin@google.com" Date: Wed, 30 Jul 2008 16:40:10 +0000 Subject: Move some more classes from net/base into the net:: namespace. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116 0039d316-1c4b-4281-b951-d872f2087c98 --- net/url_request/mime_sniffer_proxy.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'net/url_request/mime_sniffer_proxy.cc') diff --git a/net/url_request/mime_sniffer_proxy.cc b/net/url_request/mime_sniffer_proxy.cc index 2a0dec6..47568d9 100644 --- a/net/url_request/mime_sniffer_proxy.cc +++ b/net/url_request/mime_sniffer_proxy.cc @@ -41,7 +41,7 @@ MimeSnifferProxy::MimeSnifferProxy(URLRequest* request, void MimeSnifferProxy::OnResponseStarted(URLRequest* request) { if (request->status().is_success()) { request->GetMimeType(&mime_type_); - if (mime_util::ShouldSniffMimeType(request->url(), mime_type_)) { + if (net::ShouldSniffMimeType(request->url(), mime_type_)) { // We need to read content before we know the mime type, // so we don't call OnResponseStarted. sniff_content_ = true; @@ -82,8 +82,8 @@ void MimeSnifferProxy::OnReadCompleted(URLRequest* request, int bytes_read) { std::string type_hint; request_->GetMimeType(&type_hint); bytes_read_ = bytes_read; - mime_util::SniffMimeType(buf_, bytes_read_, - request_->url(), type_hint, &mime_type_); + net::SniffMimeType( + buf_, bytes_read_, request_->url(), type_hint, &mime_type_); } else { error_ = true; } -- cgit v1.1