diff options
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/common/content_switches.cc | 6 | ||||
-rw-r--r-- | content/public/common/content_switches.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc index 0db0de2..45f72a1 100644 --- a/content/public/common/content_switches.cc +++ b/content/public/common/content_switches.cc @@ -966,12 +966,12 @@ const char kDisableCoreAnimationPlugins[] = // Device scale factor passed to certain processes like renderers, etc. const char kDeviceScaleFactor[] = "device-scale-factor"; +// Disables the DirectWrite font rendering system on windows. +const char kDisableDirectWrite[] = "disable-direct-write"; + // Disable the Legacy Window which corresponds to the size of the WebContents. const char kDisableLegacyIntermediateWindow[] = "disable-legacy-window"; -// Enables the DirectWrite font rendering system on windows. -const char kEnableDirectWrite[] = "enable-direct-write"; - // Use high resolution timers for TimeTicks. const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h index e2e3891..38e2c54 100644 --- a/content/public/common/content_switches.h +++ b/content/public/common/content_switches.h @@ -285,8 +285,8 @@ extern const char kDisableCoreAnimationPlugins[]; // This switch contains the device scale factor passed to certain processes // like renderers, etc. CONTENT_EXPORT extern const char kDeviceScaleFactor[]; +CONTENT_EXPORT extern const char kDisableDirectWrite[]; CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; -CONTENT_EXPORT extern const char kEnableDirectWrite[]; CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; // This switch will be removed when we enable the win32K lockdown process // mitigation. |