Index: Source/core/rendering/RenderLayerRepainter.cpp |
diff --git a/Source/core/rendering/RenderLayerRepainter.cpp b/Source/core/rendering/RenderLayerRepainter.cpp |
index 108488b711cda6327539b245882e30ff0b424ad0..bfc174b2036bf34ed7f5e080801dd3915a2d1db9 100644 |
--- a/Source/core/rendering/RenderLayerRepainter.cpp |
+++ b/Source/core/rendering/RenderLayerRepainter.cpp |
@@ -184,14 +184,6 @@ LayoutRect RenderLayerRepainter::repaintRectIncludingNonCompositingDescendants() |
return repaintRect; |
} |
-void RenderLayerRepainter::setBackingNeedsRepaint() |
-{ |
- // There is only one call site, and that call site ensures that the compositing state is PaintsIntoOwnBacking. |
- ASSERT(m_renderer.compositingState() == PaintsIntoOwnBacking); |
- |
- m_renderer.compositedLayerMapping()->setContentsNeedDisplay(); |
-} |
- |
void RenderLayerRepainter::setBackingNeedsRepaintInRect(const LayoutRect& r) |
{ |
// https://bugs.webkit.org/show_bug.cgi?id=61159 describes an unreproducible crash here, |