Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: trunk/src/ppapi/shared_impl/dictionary_var.cc

Issue 198163004: Revert 257524 "Move IsStringASCII/UTF8 to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/net/proxy/proxy_resolver_v8.cc ('k') | trunk/src/ppapi/shared_impl/file_ref_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/ppapi/shared_impl/dictionary_var.cc
===================================================================
--- trunk/src/ppapi/shared_impl/dictionary_var.cc (revision 257532)
+++ trunk/src/ppapi/shared_impl/dictionary_var.cc (working copy)
@@ -90,7 +90,7 @@
bool DictionaryVar::SetWithStringKey(const std::string& utf8_key,
const PP_Var& value) {
- if (!base::IsStringUTF8(utf8_key))
+ if (!IsStringUTF8(utf8_key))
return false;
key_value_map_[utf8_key] = value;
« no previous file with comments | « trunk/src/net/proxy/proxy_resolver_v8.cc ('k') | trunk/src/ppapi/shared_impl/file_ref_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698