Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1300)

Unified Diff: Source/core/rendering/PaintInvalidationState.h

Issue 433603004: Disentangle repaint-after-compositing from updateLayerPositionsAfterLayout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/PaintInvalidationState.h
diff --git a/Source/core/rendering/PaintInvalidationState.h b/Source/core/rendering/PaintInvalidationState.h
index cec492d1af559fdf9fceba1d6f53782836f4704f..31d69ededa81bbf244903f9b97e2af52e0e3351c 100644
--- a/Source/core/rendering/PaintInvalidationState.h
+++ b/Source/core/rendering/PaintInvalidationState.h
@@ -31,6 +31,9 @@ public:
bool cachedOffsetsEnabled() const { return m_cachedOffsetsEnabled; }
bool isClipped() const { return m_clipped; }
+ bool forceCheckForPaintInvalidation() const { return m_forceCheckForPaintInvalidation; }
+ void setForceCheckForPaintInvalidation() { m_forceCheckForPaintInvalidation = true; }
+
const RenderLayerModelObject& paintInvalidationContainer() const { return m_paintInvalidationContainer; }
RenderObject& renderer() const { return m_renderer; }
@@ -45,6 +48,7 @@ private:
bool m_clipped;
mutable bool m_cachedOffsetsEnabled;
+ bool m_forceCheckForPaintInvalidation;
LayoutRect m_clipRect;

Powered by Google App Engine
This is Rietveld 408576698