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

Unified Diff: third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp

Issue 1610233002: [Reland] Remove PaintInfo's paintingRoot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/paint/SVGContainerPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp b/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
index b3ad6a008aa9aedcc542f45284c5e89c904a4929..1eb6070251c7d20bd35ed90370a5e87f43436ce9 100644
--- a/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
@@ -48,7 +48,6 @@ void SVGContainerPainter::paint(const PaintInfo& paintInfo)
continueRendering = paintContext.applyClipMaskAndFilterIfNecessary();
if (continueRendering) {
- paintContext.paintInfo().updatePaintingRootForChildren(&m_layoutSVGContainer);
for (LayoutObject* child = m_layoutSVGContainer.firstChild(); child; child = child->nextSibling())
child->paint(paintContext.paintInfo(), IntPoint());
}

Powered by Google App Engine
This is Rietveld 408576698