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

Unified Diff: ui/gfx/font_render_params.cc

Issue 2962073002: OOPIF support for layout test pixel dumps.
Patch Set: Rebasing on top of 8bc8e844008b (still works locally). Created 3 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
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/resources/frame.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/font_render_params.cc
diff --git a/ui/gfx/font_render_params.cc b/ui/gfx/font_render_params.cc
index 20fa03dfcf4734b171c0f211601c28ade48cc3ef..15018eaf2ad37c2392a4d066fed1ec4165960a8a 100644
--- a/ui/gfx/font_render_params.cc
+++ b/ui/gfx/font_render_params.cc
@@ -9,13 +9,12 @@
namespace gfx {
FontRenderParams::FontRenderParams()
- : antialiasing(true),
- subpixel_positioning(true),
- autohinter(false),
+ : antialiasing(false), // DO NOT SUBMIT - figure out why OOPIFs differ.
+ subpixel_positioning(true), // when antialiasing is used.
+ autohinter(false), // this is https://crbug.com/740583.
use_bitmaps(false),
hinting(HINTING_MEDIUM),
- subpixel_rendering(SUBPIXEL_RENDERING_NONE) {
-}
+ subpixel_rendering(SUBPIXEL_RENDERING_NONE) {}
FontRenderParams::FontRenderParams(const FontRenderParams& other) = default;
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/resources/frame.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698