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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp

Issue 2671853003: [SPInvalidation] Use GeometryMapper in PaintLayerClipper for paint. (Closed)
Patch Set: Merge branch 'master' into paintlayerclipper Created 3 years, 10 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/LayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
index f945e820fcfd1ffde0e0d47cb1f8ba18b336e358..4ee2ed2c8b89c4276c0766fa3a64e697e9db39fc 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
@@ -670,9 +670,9 @@ void LayoutTreeAsText::writeLayers(TextStream& ts,
// Calculate the clip rects we should use.
LayoutRect layerBounds;
ClipRect damageRect, clipRectToApply;
- layer->clipper().calculateRects(
- ClipRectsContext(rootLayer, UncachedClipRects), paintRect, layerBounds,
- damageRect, clipRectToApply);
+ layer->clipper(PaintLayer::DoNotUseGeometryMapper)
+ .calculateRects(ClipRectsContext(rootLayer, UncachedClipRects), paintRect,
+ layerBounds, damageRect, clipRectToApply);
// Ensure our lists are up to date.
layer->stackingNode()->updateLayerListsIfNeeded();

Powered by Google App Engine
This is Rietveld 408576698