| Index: content/public/common/content_features.cc
|
| diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
|
| index 656b8fb78f25e535e8a6834d33a8675d84a6471b..375386f056f5eb7d930552528583ddaf9c0a20c1 100644
|
| --- a/content/public/common/content_features.cc
|
| +++ b/content/public/common/content_features.cc
|
| @@ -111,6 +111,11 @@ const base::Feature kMemoryCoordinator {
|
| "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT
|
| };
|
|
|
| +// An experiment forcing events to be non-blocking when the main thread is
|
| +// deemed unresponsive. See crbug.com/599609.
|
| +const base::Feature kMainThreadBusyScrollIntervention{
|
| + "MainThreadBusyScrollIntervention", base::FEATURE_DISABLED_BY_DEFAULT};
|
| +
|
| // Non-validating reload for desktop.
|
| // See https://crbug.com/591245
|
| const base::Feature kNonValidatingReloadOnNormalReload{
|
| @@ -135,7 +140,7 @@ const base::Feature kPassiveDocumentEventListeners{
|
| "PassiveDocumentEventListeners", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
| // Whether we should force a touchstart and first touchmove per scroll event
|
| -// listeners to be 'passive' during fling.
|
| +// listeners to be non-blocking during fling.
|
| const base::Feature kPassiveEventListenersDueToFling{
|
| "PassiveEventListenersDueToFling", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
|