diff options
Diffstat (limited to 'content/child/simple_webmimeregistry_impl.cc')
-rw-r--r-- | content/child/simple_webmimeregistry_impl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/child/simple_webmimeregistry_impl.cc b/content/child/simple_webmimeregistry_impl.cc index 3b3ebd6..e7416d9 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( |