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

Unified Diff: trunk/src/ppapi/shared_impl/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
Index: trunk/src/ppapi/shared_impl/var.cc
===================================================================
--- trunk/src/ppapi/shared_impl/var.cc (revision 257532)
+++ trunk/src/ppapi/shared_impl/var.cc (working copy)
@@ -148,7 +148,7 @@
// static
PP_Var StringVar::StringToPPVar(const char* data, uint32 len) {
scoped_refptr<StringVar> str(new StringVar(data, len));
- if (!str.get() || !base::IsStringUTF8(str->value()))
+ if (!str.get() || !IsStringUTF8(str->value()))
return PP_MakeNull();
return str->GetPPVar();
}
« no previous file with comments | « trunk/src/ppapi/shared_impl/file_ref_util.cc ('k') | trunk/src/remoting/protocol/me2me_host_authenticator_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698