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

Unified Diff: ui/gfx/font_fallback_win.cc

Issue 16051006: ui/gfx: Use base::string16 now that string16 was moved into base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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 | « ui/gfx/font.cc ('k') | ui/gfx/font_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/font_fallback_win.cc
diff --git a/ui/gfx/font_fallback_win.cc b/ui/gfx/font_fallback_win.cc
index 85fa41eb228072c3886d3421580d49cc5cf313c7..c4e3f48a7e9ace9f364be100b24f231489cfff27 100644
--- a/ui/gfx/font_fallback_win.cc
+++ b/ui/gfx/font_fallback_win.cc
@@ -48,7 +48,7 @@ void GetFontNamesFromFilename(const std::string& filename,
// Returns true if |text| contains only ASCII digits.
bool ContainsOnlyDigits(const std::string& text) {
- return text.find_first_not_of("0123456789") == string16::npos;
+ return text.find_first_not_of("0123456789") == base::string16::npos;
}
// Appends a Font with the given |name| and |size| to |fonts| unless the last
« no previous file with comments | « ui/gfx/font.cc ('k') | ui/gfx/font_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698