summaryrefslogtreecommitdiffstats
path: root/content/child/simple_webmimeregistry_impl.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 14:38:26 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 14:38:26 +0000
commit52796541ecc14a0aa287ec0859e23350fed71278 (patch)
tree62d8cd37dc5d8eabaa87d5e62150142154465ff4 /content/child/simple_webmimeregistry_impl.cc
parent70d4450270d54a051b3b5ea828814ced1c29857f (diff)
downloadchromium_src-52796541ecc14a0aa287ec0859e23350fed71278.zip
chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.tar.gz
chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.tar.bz2
Move IsStringUTF8/ASCII to base namespace
TBR=sky@chromium.org Review URL: https://codereview.chromium.org/270183002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child/simple_webmimeregistry_impl.cc')
-rw-r--r--content/child/simple_webmimeregistry_impl.cc3
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(