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

Unified Diff: ui/gfx/font_list.cc

Issue 382273002: ui/gfx: Allow for font-specific rendering settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: diff against https://codereview.chromium.org/387743002/ Created 6 years, 5 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_list.cc
diff --git a/ui/gfx/font_list.cc b/ui/gfx/font_list.cc
index 920204bf7a74dcc0c7bd58e73242846852b989d0..891d500aa4a7a62b4eef79269180fc3f8561ba4f 100644
--- a/ui/gfx/font_list.cc
+++ b/ui/gfx/font_list.cc
@@ -98,6 +98,10 @@ int FontList::GetFontSize() const {
return impl_->GetFontSize();
}
+const FontRenderParams& FontList::GetFontRenderParams() const {
+ return impl_->GetFontRenderParams();
+}
+
const std::vector<Font>& FontList::GetFonts() const {
return impl_->GetFonts();
}

Powered by Google App Engine
This is Rietveld 408576698