| Index: content/child/simple_webmimeregistry_impl.cc
|
| diff --git a/content/child/simple_webmimeregistry_impl.cc b/content/child/simple_webmimeregistry_impl.cc
|
| index 3b3ebd62c79b3723e99614a65f05f4558369ea4c..e7416d92041d5443c2cd4782704a549fa4fbb99e 100644
|
| --- a/content/child/simple_webmimeregistry_impl.cc
|
| +++ b/content/child/simple_webmimeregistry_impl.cc
|
| @@ -18,7 +18,8 @@ namespace content {
|
|
|
| //static
|
| std::string SimpleWebMimeRegistryImpl::ToASCIIOrEmpty(const WebString& string) {
|
| - return IsStringASCII(string) ? base::UTF16ToASCII(string) : std::string();
|
| + return base::IsStringASCII(string) ? base::UTF16ToASCII(string)
|
| + : std::string();
|
| }
|
|
|
| WebMimeRegistry::SupportsType SimpleWebMimeRegistryImpl::supportsMIMEType(
|
|
|