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

Unified Diff: content/common/font_list_mac.mm

Issue 102593002: Convert string16 to base::string16 in content. (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/font_cache_dispatcher_win.cc ('k') | content/common/font_list_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/font_list_mac.mm
diff --git a/content/common/font_list_mac.mm b/content/common/font_list_mac.mm
index 4ffb3de1804cb39bb6fe3b21989a258fc809d8ee..64a54cda7f403bbb850a573aa756278bfc2ebeba 100644
--- a/content/common/font_list_mac.mm
+++ b/content/common/font_list_mac.mm
@@ -21,9 +21,9 @@ scoped_ptr<base::ListValue> GetFontList_SlowBlocking() {
NSString* localized_family_name =
[fontManager localizedNameForFamily:family_name face:nil];
base::ListValue* font_item = new base::ListValue();
- string16 family = base::SysNSStringToUTF16(family_name);
+ base::string16 family = base::SysNSStringToUTF16(family_name);
font_item->Append(new base::StringValue(family));
- string16 loc_family = base::SysNSStringToUTF16(localized_family_name);
+ base::string16 loc_family = base::SysNSStringToUTF16(localized_family_name);
font_item->Append(new base::StringValue(loc_family));
font_list->Append(font_item);
}
« no previous file with comments | « content/common/font_cache_dispatcher_win.cc ('k') | content/common/font_list_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698