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

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

Issue 1798263002: Rename isTreatedAsOrStackingContext to isStacked (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows compile Created 4 years, 9 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/SVGForeignObjectPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp b/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp
index 1e8ec92d9150107a5090449feb816dcb29755617..1b3a28bc27b9b575aeb6beb1b957077230fd1089 100644
--- a/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp
@@ -55,10 +55,10 @@ void SVGForeignObjectPainter::paint(const PaintInfo& paintInfo)
if (continueRendering) {
// Paint all phases of FO elements atomically as though the FO element established its own stacking context.
- // The delegate forwards calls to paint() in LayoutObject::paintAsPseudoStackingContext() to
+ // The delegate forwards calls to paint() in LayoutObject::paintAllPhasesAtomically() to
// BlockPainter::paint(), instead of m_layoutSVGForeignObject.paint() (which would call this method again).
BlockPainterDelegate delegate(m_layoutSVGForeignObject);
- ObjectPainter(delegate).paintAsPseudoStackingContext(paintContext.paintInfo(), LayoutPoint());
+ ObjectPainter(delegate).paintAllPhasesAtomically(paintContext.paintInfo(), LayoutPoint());
}
}
« no previous file with comments | « third_party/WebKit/Source/core/paint/README.md ('k') | third_party/WebKit/Source/core/paint/ScrollbarPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698