Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: trunk/src/net/base/mime_util.cc

Issue 198163004: Revert 257524 "Move IsStringASCII/UTF8 to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/media/cdm/json_web_key.cc ('k') | trunk/src/net/base/net_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/net/base/mime_util.cc
===================================================================
--- trunk/src/net/base/mime_util.cc (revision 257532)
+++ trunk/src/net/base/mime_util.cc (working copy)
@@ -640,7 +640,7 @@
bool MimeUtil::IsMimeType(const std::string& type_string) const {
// MIME types are always ASCII and case-insensitive (at least, the top-level
// and secondary types we care about).
- if (!base::IsStringASCII(type_string))
+ if (!IsStringASCII(type_string))
return false;
if (type_string == "*/*" || type_string == "*")
« no previous file with comments | « trunk/src/media/cdm/json_web_key.cc ('k') | trunk/src/net/base/net_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698