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

Unified Diff: content/public/common/pepper_plugin_info.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/public/common/page_state.cc ('k') | content/public/common/webplugininfo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/pepper_plugin_info.cc
diff --git a/content/public/common/pepper_plugin_info.cc b/content/public/common/pepper_plugin_info.cc
index 21ef4e8f44b6bff0cb810ea3dce3c4376415aa4f..d627a4becb0f68136b0c12c26ad375c13d684569 100644
--- a/content/public/common/pepper_plugin_info.cc
+++ b/content/public/common/pepper_plugin_info.cc
@@ -34,10 +34,10 @@ WebPluginInfo PepperPluginInfo::ToWebPluginInfo() const {
WebPluginInfo::PLUGIN_TYPE_PEPPER_IN_PROCESS;
info.name = name.empty() ?
- path.BaseName().LossyDisplayName() : UTF8ToUTF16(name);
+ path.BaseName().LossyDisplayName() : base::UTF8ToUTF16(name);
info.path = path;
- info.version = ASCIIToUTF16(version);
- info.desc = ASCIIToUTF16(description);
+ info.version = base::ASCIIToUTF16(version);
+ info.desc = base::ASCIIToUTF16(description);
info.mime_types = mime_types;
info.pepper_permissions = permissions;
« no previous file with comments | « content/public/common/page_state.cc ('k') | content/public/common/webplugininfo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698