diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 14:38:26 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 14:38:26 +0000 |
commit | 52796541ecc14a0aa287ec0859e23350fed71278 (patch) | |
tree | 62d8cd37dc5d8eabaa87d5e62150142154465ff4 /net/http/http_content_disposition.cc | |
parent | 70d4450270d54a051b3b5ea828814ced1c29857f (diff) | |
download | chromium_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 'net/http/http_content_disposition.cc')
-rw-r--r-- | net/http/http_content_disposition.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/http/http_content_disposition.cc b/net/http/http_content_disposition.cc index 83098f4..3a1dede 100644 --- a/net/http/http_content_disposition.cc +++ b/net/http/http_content_disposition.cc @@ -86,9 +86,9 @@ bool DecodeWord(const std::string& encoded_word, if (encoded_word.empty()) return true; - if (!IsStringASCII(encoded_word)) { + if (!base::IsStringASCII(encoded_word)) { // Try UTF-8, referrer_charset and the native OS default charset in turn. - if (IsStringUTF8(encoded_word)) { + if (base::IsStringUTF8(encoded_word)) { *output = encoded_word; } else { base::string16 utf16_output; @@ -191,7 +191,7 @@ bool DecodeWord(const std::string& encoded_word, if (decoded_word != encoded_word) *parse_result_flags |= net::HttpContentDisposition::HAS_PERCENT_ENCODED_STRINGS; - if (IsStringUTF8(decoded_word)) { + if (base::IsStringUTF8(decoded_word)) { output->swap(decoded_word); return true; // We can try either the OS default charset or 'origin charset' here, @@ -317,7 +317,7 @@ bool DecodeExtValue(const std::string& param_value, std::string* decoded) { return false; // RFC 5987 value should be ASCII-only. - if (!IsStringASCII(value)) { + if (!base::IsStringASCII(value)) { decoded->clear(); return true; } |