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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h

Issue 1880763002: Merge repaintRects and paintInvalidationObjects in text-based-repaint test results (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h
index 8609f9b8a1421185ab7c0c486e1c8db92fc9829b..bd836e914f05ad4b710539c501345579d49f948c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h
@@ -283,8 +283,10 @@ public:
void invalidateTreeIfNeeded(const PaintInvalidationState&) override;
- // Indicate that the contents of this layoutObject need to be repainted. Only has an effect if compositing is being used,
- void setBackingNeedsPaintInvalidationInRect(const LayoutRect&, PaintInvalidationReason) const; // r is in the coordinate space of this layout object
+ // Indicate that the contents of this layoutObject need to be repainted.
+ // This only has an effect if compositing is being used.
+ // The rect is in the physical coordinate space of this layout object.
+ void setBackingNeedsPaintInvalidationInRect(const LayoutRect&, PaintInvalidationReason, const LayoutObject&) const;
void invalidateDisplayItemClientOnBacking(const DisplayItemClient&, PaintInvalidationReason) const;

Powered by Google App Engine
This is Rietveld 408576698