Index: third_party/WebKit/Source/core/paint/LineBoxListPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/LineBoxListPainter.cpp b/third_party/WebKit/Source/core/paint/LineBoxListPainter.cpp |
index 5d2144d0f7438fcadc37a349b125c3f157b2f4bb..0924dbddc50852a1fd3129f935d7a27de6498e8f 100644 |
--- a/third_party/WebKit/Source/core/paint/LineBoxListPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/LineBoxListPainter.cpp |
@@ -60,8 +60,6 @@ |
static void invalidateLineBoxPaintOffsetsInternal(PaintController& paintController, InlineFlowBox* inlineBox) |
{ |
-#if 0 |
- // TODO(wangxianzhu): Implement this with PaintInvalidator. |
paintController.invalidatePaintOffset(*inlineBox); |
for (InlineBox* child = inlineBox->firstChild(); child; child = child->nextOnLine()) { |
if (!child->getLineLayoutItem().isText() && child->boxModelObject().hasSelfPaintingLayer()) |
@@ -71,7 +69,6 @@ |
else |
paintController.invalidatePaintOffset(*child); |
} |
-#endif |
} |
void LineBoxListPainter::invalidateLineBoxPaintOffsets(const PaintInfo& paintInfo) const |