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

Unified Diff: content/common/pepper_plugin_list.cc

Issue 176843022: Move UTF16ToASCII, remove WideToASCII. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | « content/child/simple_webmimeregistry_impl.cc ('k') | content/common/plugin_list_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/pepper_plugin_list.cc
diff --git a/content/common/pepper_plugin_list.cc b/content/common/pepper_plugin_list.cc
index 6f4b21b8cd99f58bea9bea5d00550f1dfbb46bc8..fac77f6f2e4bd38af5bd1c353287c19dc933c099 100644
--- a/content/common/pepper_plugin_list.cc
+++ b/content/common/pepper_plugin_list.cc
@@ -134,9 +134,9 @@ bool MakePepperPluginInfo(const WebPluginInfo& webplugin_info,
WebPluginInfo::PLUGIN_TYPE_PEPPER_UNSANDBOXED;
pepper_info->path = base::FilePath(webplugin_info.path);
- pepper_info->name = UTF16ToASCII(webplugin_info.name);
- pepper_info->description = UTF16ToASCII(webplugin_info.desc);
- pepper_info->version = UTF16ToASCII(webplugin_info.version);
+ pepper_info->name = base::UTF16ToASCII(webplugin_info.name);
+ pepper_info->description = base::UTF16ToASCII(webplugin_info.desc);
+ pepper_info->version = base::UTF16ToASCII(webplugin_info.version);
pepper_info->mime_types = webplugin_info.mime_types;
pepper_info->permissions = webplugin_info.pepper_permissions;
« no previous file with comments | « content/child/simple_webmimeregistry_impl.cc ('k') | content/common/plugin_list_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698