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

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

Issue 891013003: Delete RenderTextWin and RenderTextPango. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn update Created 5 years, 10 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gfx/switches.h" 5 #include "ui/gfx/switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // Disables the HarfBuzz port of RenderText on all platforms.
10 const char kDisableHarfBuzzRenderText[] = "disable-harfbuzz-rendertext";
11
12 // Enables the HarfBuzz port of RenderText on all platforms.
13 const char kEnableHarfBuzzRenderText[] = "enable-harfbuzz-rendertext";
14
15 // Enable text glyphs to have X-positions that aren't snapped to the pixel grid 9 // Enable text glyphs to have X-positions that aren't snapped to the pixel grid
16 // in webkit renderers. 10 // in webkit renderers.
17 const char kEnableWebkitTextSubpixelPositioning[] = 11 const char kEnableWebkitTextSubpixelPositioning[] =
18 "enable-webkit-text-subpixel-positioning"; 12 "enable-webkit-text-subpixel-positioning";
19 13
20 // Overrides the device scale factor for the browser UI and the contents. 14 // Overrides the device scale factor for the browser UI and the contents.
21 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; 15 const char kForceDeviceScaleFactor[] = "force-device-scale-factor";
22 16
23 #if defined(OS_WIN) 17 #if defined(OS_WIN)
24 // Disables the DirectWrite font rendering system on windows. 18 // Disables the DirectWrite font rendering system on windows.
25 const char kDisableDirectWrite[] = "disable-direct-write"; 19 const char kDisableDirectWrite[] = "disable-direct-write";
26 20
27 // Disables DirectWrite font rendering for general UI elements. 21 // Disables DirectWrite font rendering for general UI elements.
28 const char kDisableDirectWriteForUI[] = "disable-directwrite-for-ui"; 22 const char kDisableDirectWriteForUI[] = "disable-directwrite-for-ui";
29 #endif 23 #endif
30 24
25 #if defined(OS_MACOSX)
26 // Enables the HarfBuzz port of RenderText on Mac.
msw 2015/02/02 22:52:55 nit: Maybe mention that RenderTextHarfBuzz is alre
Daniel Erat 2015/02/02 23:10:31 Done.
27 const char kEnableHarfBuzzRenderText[] = "enable-harfbuzz-rendertext";
28 #endif
29
31 } // namespace switches 30 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698