Index: content/public/common/content_switches.cc |
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc |
index 5ae4367758474a7ee2b815b4a9cafd6a3e8d3d87..b59e5cd0f8d5ba822d2f0c1174145b84dfae1013 100644 |
--- a/content/public/common/content_switches.cc |
+++ b/content/public/common/content_switches.cc |
@@ -84,6 +84,12 @@ const char kDisableAcceleratedVideoDecode[] = |
// users with many windows/tabs and lots of memory. |
const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
+// Disable one or more Blink runtime-enabled features. |
+// Use names from RuntimeEnabledFeatures.in, separated by commas. |
+// Applied after kEnableBlinkFeatures, and after other flags that change these |
+// features. |
+const char kDisableBlinkFeatures[] = "disable-blink-features"; |
+ |
// Disable the Blink Scheduler. Ensures there's no reordering of blink tasks. |
// This switch is intended only for performance tests. |
const char kDisableBlinkScheduler[] = "disable-blink-scheduler"; |
@@ -285,6 +291,12 @@ const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; |
const char kEnablePreferCompositingToLCDText[] = |
"enable-prefer-compositing-to-lcd-text"; |
+// Disable one or more Blink runtime-enabled features. |
+// Use names from RuntimeEnabledFeatures.in, separated by commas. |
+// Applied before kDisableBlinkFeatures, and after other flags that change these |
+// features. |
+const char kEnableBlinkFeatures[] = "enable-blink-features"; |
+ |
// PlzNavigate: Use the experimental browser-side navigation path. |
const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; |