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

Side by Side Diff: ui/gfx/font_render_params_mac.cc

Issue 854713003: More old files deletion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix tryjobs? Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « ui/gfx/font_render_params_linux_unittest.cc ('k') | ui/gfx/font_render_params_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/gfx/font_render_params.h"
6
7 #include "base/logging.h"
8 #include "base/macros.h"
9
10 namespace gfx {
11
12 namespace {
13
14 // Returns params that match SkiaTextRenderer's default render settings.
15 FontRenderParams LoadDefaults() {
16 FontRenderParams params;
17 params.antialiasing = true;
18 params.autohinter = false;
19 params.use_bitmaps = true;
20 params.subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_RGB;
21 params.subpixel_positioning = true;
22 params.hinting = FontRenderParams::HINTING_MEDIUM;
23
24 return params;
25 }
26
27 } // namespace
28
29 FontRenderParams GetFontRenderParams(const FontRenderParamsQuery& query,
30 std::string* family_out) {
31 if (family_out)
32 NOTIMPLEMENTED();
33 // TODO: Query the OS for font render settings instead of returning defaults.
34 CR_DEFINE_STATIC_LOCAL(const gfx::FontRenderParams, params, (LoadDefaults()));
35 return params;
36 }
37
38 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/font_render_params_linux_unittest.cc ('k') | ui/gfx/font_render_params_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698