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 |