| 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 // Enable text glyphs to have X-positions that aren't snapped to the pixel grid | |
| 10 // in webkit renderers. | |
| 11 const char kEnableWebkitTextSubpixelPositioning[] = | |
| 12 "enable-webkit-text-subpixel-positioning"; | |
| 13 | |
| 14 // Overrides the device scale factor for the browser UI and the contents. | 9 // Overrides the device scale factor for the browser UI and the contents. |
| 15 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; | 10 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; |
| 16 | 11 |
| 17 #if defined(OS_WIN) | 12 #if defined(OS_WIN) |
| 18 // Disables the DirectWrite font rendering system on windows. | 13 // Disables the DirectWrite font rendering system on windows. |
| 19 const char kDisableDirectWrite[] = "disable-direct-write"; | 14 const char kDisableDirectWrite[] = "disable-direct-write"; |
| 20 | 15 |
| 21 // Disables DirectWrite font rendering for general UI elements. | 16 // Disables DirectWrite font rendering for general UI elements. |
| 22 const char kDisableDirectWriteForUI[] = "disable-directwrite-for-ui"; | 17 const char kDisableDirectWriteForUI[] = "disable-directwrite-for-ui"; |
| 23 #endif | 18 #endif |
| 24 | 19 |
| 25 #if defined(OS_MACOSX) | 20 #if defined(OS_MACOSX) |
| 26 // Enables the HarfBuzz port of RenderText on Mac (it's already used only for | 21 // Enables the HarfBuzz port of RenderText on Mac (it's already used only for |
| 27 // text editing; this enables it for everything else). | 22 // text editing; this enables it for everything else). |
| 28 const char kEnableHarfBuzzRenderText[] = "enable-harfbuzz-rendertext"; | 23 const char kEnableHarfBuzzRenderText[] = "enable-harfbuzz-rendertext"; |
| 29 #endif | 24 #endif |
| 30 | 25 |
| 31 } // namespace switches | 26 } // namespace switches |
| OLD | NEW |