Chromium Code Reviews| OLD | NEW |
|---|---|
| 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. | 9 // Disables the HarfBuzz port of RenderText on all platforms. |
| 10 const char kDisableHarfBuzzRenderText[] = "disable-harfbuzz-rendertext"; | 10 const char kDisableHarfBuzzRenderText[] = "disable-harfbuzz-rendertext"; |
| 11 | 11 |
| 12 // Enables the HarfBuzz port of RenderText on all platforms. | 12 // Enables the HarfBuzz port of RenderText on all platforms. |
| 13 const char kEnableHarfBuzzRenderText[] = "enable-harfbuzz-rendertext"; | 13 const char kEnableHarfBuzzRenderText[] = "enable-harfbuzz-rendertext"; |
| 14 | 14 |
| 15 // Enable text glyphs to have X-positions that aren't snapped to the pixel grid | 15 // Enable text glyphs to have X-positions that aren't snapped to the pixel grid |
| 16 // in webkit renderers. | 16 // in webkit renderers. |
| 17 const char kEnableWebkitTextSubpixelPositioning[] = | 17 const char kEnableWebkitTextSubpixelPositioning[] = |
| 18 "enable-webkit-text-subpixel-positioning"; | 18 "enable-webkit-text-subpixel-positioning"; |
| 19 | 19 |
| 20 // Overrides the device scale factor for the browser UI and the contents. | 20 // Overrides the device scale factor for the browser UI and the contents. |
| 21 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; | 21 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; |
| 22 | 22 |
| 23 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
| 24 // Disables the DirectWrite font rendering system on windows. | 24 // Disables the DirectWrite font rendering system on windows. |
| 25 const char kDisableDirectWrite[] = "disable-direct-write"; | 25 const char kDisableDirectWrite[] = "disable-direct-write"; |
| 26 | 26 |
| 27 // Enables DirectWrite font rendering for general UI elements. | 27 // Disables DirectWrite font rendering for general UI elements. |
| 28 const char kEnableDirectWriteForUI[] = "enable-directwrite-for-ui"; | 28 const char kDisableDirectWriteForUI[] = "disable-directwrite-for-ui"; |
|
sky
2014/11/17 15:44:16
Do we really need both DisableDirectWrite and Disa
| |
| 29 #endif | 29 #endif |
| 30 | 30 |
| 31 } // namespace switches | 31 } // namespace switches |
| OLD | NEW |