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

Unified Diff: content/common/mac/font_descriptor.h

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/mac/attributed_string_coder.mm ('k') | content/common/mac/font_descriptor.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/mac/font_descriptor.h
diff --git a/content/common/mac/font_descriptor.h b/content/common/mac/font_descriptor.h
index f47eb22aebfbbb8c4f6b61818e82988922addb9f..219f1fb2ca8a145567fbf377e86d70deb6a69d37 100644
--- a/content/common/mac/font_descriptor.h
+++ b/content/common/mac/font_descriptor.h
@@ -17,7 +17,7 @@ class NSFont;
// Container to allow serializing an NSFont over IPC.
struct CONTENT_EXPORT FontDescriptor {
explicit FontDescriptor(NSFont* font);
- FontDescriptor(string16 name, float size);
+ FontDescriptor(base::string16 name, float size);
FontDescriptor() : font_point_size(0) {}
@@ -25,7 +25,7 @@ struct CONTENT_EXPORT FontDescriptor {
NSFont* ToNSFont() const;
// Name of the font.
- string16 font_name;
+ base::string16 font_name;
// Size in points.
float font_point_size;
« no previous file with comments | « content/common/mac/attributed_string_coder.mm ('k') | content/common/mac/font_descriptor.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698