diff options
Diffstat (limited to 'chromium/cc/trees/layer_tree_settings.h')
-rw-r--r-- | chromium/cc/trees/layer_tree_settings.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chromium/cc/trees/layer_tree_settings.h b/chromium/cc/trees/layer_tree_settings.h index 95a901678c2..446d46764c5 100644 --- a/chromium/cc/trees/layer_tree_settings.h +++ b/chromium/cc/trees/layer_tree_settings.h @@ -187,10 +187,18 @@ class CC_EXPORT LayerTreeSettings { // Whether experimental de-jelly effect is allowed. bool allow_de_jelly_effect = false; + // Whether the compositor should attempt to sync with the scroll handlers + // before submitting a frame. + bool enable_synchronized_scrolling = true; + #if DCHECK_IS_ON() // Whether to check if any double blur exists. bool log_on_ui_double_background_blur = false; #endif + + // When enabled, enforces new interoperable semantics for 3D transforms. + // See crbug.com/1008483. + bool enable_transform_interop = false; }; class CC_EXPORT LayerListSettings : public LayerTreeSettings { |