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

Unified Diff: content/child/npapi/plugin_instance.cc

Issue 121033002: Update uses of UTF conversions in content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « content/child/fileapi/webfilesystem_impl.cc ('k') | content/child/npapi/webplugin_delegate_impl_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/plugin_instance.cc
diff --git a/content/child/npapi/plugin_instance.cc b/content/child/npapi/plugin_instance.cc
index 30b3a586339a38fd2e1f41546913563fae785150..a7e2b94ea8e0e5d83ae64214a1d48a15d98b9b4d 100644
--- a/content/child/npapi/plugin_instance.cc
+++ b/content/child/npapi/plugin_instance.cc
@@ -184,7 +184,7 @@ bool PluginInstance::GetFormValue(base::string16* value) {
return false;
}
// Assumes the result is UTF8 text, as Firefox does.
- *value = UTF8ToUTF16(plugin_value);
+ *value = base::UTF8ToUTF16(plugin_value);
host_->host_functions()->memfree(plugin_value);
return true;
}
« no previous file with comments | « content/child/fileapi/webfilesystem_impl.cc ('k') | content/child/npapi/webplugin_delegate_impl_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698