| Index: content/public/common/content_switches.cc
|
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
|
| index 7bfbf039fc146153e7f3c548740766007fb5ce06..d084691f71e2c1fac3052fa464e563f1d5efa4d8 100644
|
| --- a/content/public/common/content_switches.cc
|
| +++ b/content/public/common/content_switches.cc
|
| @@ -224,6 +224,9 @@ const char kDisablePrefixedEncryptedMedia[] =
|
| // Disables LCD text.
|
| const char kDisableLCDText[] = "disable-lcd-text";
|
|
|
| +// Disables distance field text.
|
| +const char kDisableDistanceFieldText[] = "disable-distance-field-text";
|
| +
|
| // Disable LocalStorage.
|
| const char kDisableLocalStorage[] = "disable-local-storage";
|
|
|
| @@ -334,6 +337,10 @@ const char kEnableAcceleratedOverflowScroll[] =
|
| // Enables LCD text.
|
| const char kEnableLCDText[] = "enable-lcd-text";
|
|
|
| +// Enables using signed distance fields when rendering text.
|
| +// Only valid if GPU rasterization is enabled as well.
|
| +const char kEnableDistanceFieldText[] = "enable-distance-field-text";
|
| +
|
| // Enables experimental feature that maps multiple RenderLayers to
|
| // one composited layer to avoid pathological layer counts.
|
| const char kEnableLayerSquashing[] =
|
|
|