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

Unified Diff: ui/gfx/font_fallback_win.h

Issue 2054273002: Font fallback for UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix clang build error due to signed-unsigned comparison Created 4 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
Index: ui/gfx/font_fallback_win.h
diff --git a/ui/gfx/font_fallback_win.h b/ui/gfx/font_fallback_win.h
index 31fbd68f02e741672e96928e02a4d82a88fa9d50..073c4c7540a6716d6fe9ab1f9a81321b680432e7 100644
--- a/ui/gfx/font_fallback_win.h
+++ b/ui/gfx/font_fallback_win.h
@@ -84,10 +84,10 @@ class GFX_EXPORT LinkedFontsIterator {
// Finds a fallback font to render the specified |text| with respect to an
// initial |font|. Returns the resulting font via out param |result|. Returns
// |true| if a fallback font was found.
-bool GetUniscribeFallbackFont(const Font& font,
- const wchar_t* text,
- int text_length,
- Font* result);
+bool GetFallbackFont(const Font& font,
+ const wchar_t* text,
+ int text_length,
+ Font* result);
} // namespace gfx
« no previous file with comments | « ui/gfx/BUILD.gn ('k') | ui/gfx/font_fallback_win.cc » ('j') | ui/gfx/font_fallback_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698