| Index: net/base/mime_util.cc
|
| diff --git a/net/base/mime_util.cc b/net/base/mime_util.cc
|
| index 2dee17dab1d2d41a89a94093acd84b3d7a913f27..aa648d96cfd534b15a0ff8687296df003fe91ac0 100644
|
| --- a/net/base/mime_util.cc
|
| +++ b/net/base/mime_util.cc
|
| @@ -640,7 +640,7 @@ static const char* legal_top_level_types[] = {
|
| 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 (!IsStringASCII(type_string))
|
| + if (!base::IsStringASCII(type_string))
|
| return false;
|
|
|
| if (type_string == "*/*" || type_string == "*")
|
|
|