| Index: Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| diff --git a/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h b/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| index 99e5c7ada79df1dab33e8ddaa6d67426919a3b15..12d0411af64f8b4233ab1c34d35b6587175575a8 100644
|
| --- a/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| +++ b/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| @@ -159,6 +159,9 @@ public:
|
| virtual String debugName(const GraphicsLayer*) override;
|
| DocumentLifecycle& lifecycle() const;
|
|
|
| + bool needsUpdateDescendantDependentFlags() const { return m_needsUpdateDescendantDependentFlags; }
|
| + void setNeedsUpdateDescendantDependentFlags() { m_needsUpdateDescendantDependentFlags = true; }
|
| +
|
| void updatePotentialCompositingReasonsFromStyle(DeprecatedPaintLayer*);
|
|
|
| // Whether the layer could ever be composited.
|
| @@ -230,6 +233,8 @@ private:
|
| bool m_rootShouldAlwaysCompositeDirty;
|
| bool m_needsUpdateFixedBackground;
|
| bool m_isTrackingPaintInvalidations; // Used for testing.
|
| + bool m_inOverlayFullscreenVideo;
|
| + bool m_needsUpdateDescendantDependentFlags;
|
|
|
| RootLayerAttachment m_rootLayerAttachment;
|
|
|
| @@ -244,8 +249,6 @@ private:
|
| OwnPtr<GraphicsLayer> m_layerForHorizontalScrollbar;
|
| OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar;
|
| OwnPtr<GraphicsLayer> m_layerForScrollCorner;
|
| -
|
| - bool m_inOverlayFullscreenVideo;
|
| };
|
|
|
| } // namespace blink
|
|
|