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

Unified Diff: ui/gfx/font_render_params.h

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_render_params.h
diff --git a/ui/gfx/font_render_params.h b/ui/gfx/font_render_params.h
index d4a224cd07a4972affd9df6483e3b9eaaece04c4..0a984655ce1b356c237e23d56a9452ce4680453a 100644
--- a/ui/gfx/font_render_params.h
+++ b/ui/gfx/font_render_params.h
@@ -5,6 +5,9 @@
#ifndef UI_GFX_FONT_RENDER_PARAMS_H_
#define UI_GFX_FONT_RENDER_PARAMS_H_
+#include <string>
+#include <vector>
+
#include "ui/gfx/gfx_export.h"
namespace gfx {
@@ -60,6 +63,16 @@ GFX_EXPORT const FontRenderParams& GetDefaultFontRenderParams();
// Returns the system's default parameters for WebKit font rendering.
msw 2014/07/12 00:27:31 optional [followup] nit: update the WebKit name an
Daniel Erat 2014/07/12 01:55:32 added a todo and will do it in a later change (sin
msw 2014/07/12 02:26:40 sgtm, thanks
GFX_EXPORT const FontRenderParams& GetDefaultWebKitFontRenderParams();
+// Returns the appropriate parameters for rendering the font described by the
+// passed-in-arguments, any of which may be NULL. If |family_out| is non-NULL,
+// it will be updated to contain the recommended font family from |family_list|.
+GFX_EXPORT FontRenderParams GetCustomFontRenderParams(
+ bool renderer,
msw 2014/07/12 00:27:32 nit: clarify this in name |for_web_contents|? or i
Daniel Erat 2014/07/12 01:55:32 Done.
+ const std::vector<std::string>* family_list,
+ const int* pixel_size,
+ const int* point_size,
+ std::string* family_out);
Daniel Erat 2014/07/11 17:15:29 returning the font family here seems a bit out of
msw 2014/07/12 00:27:31 Acknowledged.
+
// Returns the system's default parameters for WebKit subpixel positioning.
msw 2014/07/12 00:27:31 optional [followup] nit: update the WebKit name an
Daniel Erat 2014/07/12 01:55:32 done (my favorite part is "WebKit" in the earlier
// Subpixel positioning is special since neither GTK nor FontConfig currently
// track it as a preference.

Powered by Google App Engine
This is Rietveld 408576698