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

Unified Diff: content/common/plugin_list.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/common/pepper_plugin_list.cc ('k') | content/common/plugin_list_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/plugin_list.cc
diff --git a/content/common/plugin_list.cc b/content/common/plugin_list.cc
index d623fad337d656adbce2808a0e8eb3214cb1ccd9..df1f77b3441bc52fe15986729dfbe41a4789b55f 100644
--- a/content/common/plugin_list.cc
+++ b/content/common/plugin_list.cc
@@ -153,7 +153,7 @@ bool PluginList::ParseMimeTypes(
// On Windows, the description likely has a list of file extensions
// embedded in it (e.g. "SurfWriter file (*.swr)"). Remove an extension
// list from the description if it is present.
- size_t ext = mime_type.description.find(ASCIIToUTF16("(*"));
+ size_t ext = mime_type.description.find(base::ASCIIToUTF16("(*"));
if (ext != base::string16::npos) {
if (ext > 1 && mime_type.description[ext - 1] == ' ')
ext--;
« no previous file with comments | « content/common/pepper_plugin_list.cc ('k') | content/common/plugin_list_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698