| Index: third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| index a7bb1d945ba7d3aa3b828f6a662d7bb50a699d9c..50d9e241cc39b074790648d83b03c61e97e95290 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| @@ -996,14 +996,14 @@ void LayoutBlock::RemovePositionedObject(LayoutBox* o) {
|
| }
|
| }
|
|
|
| -PaintInvalidationReason LayoutBlock::InvalidatePaintIfNeeded(
|
| +PaintInvalidationReason LayoutBlock::InvalidatePaint(
|
| const PaintInvalidationState& paint_invalidation_state) {
|
| - return LayoutBox::InvalidatePaintIfNeeded(paint_invalidation_state);
|
| + return LayoutBox::InvalidatePaint(paint_invalidation_state);
|
| }
|
|
|
| -PaintInvalidationReason LayoutBlock::InvalidatePaintIfNeeded(
|
| +PaintInvalidationReason LayoutBlock::InvalidatePaint(
|
| const PaintInvalidatorContext& context) const {
|
| - return BlockPaintInvalidator(*this).InvalidatePaintIfNeeded(context);
|
| + return BlockPaintInvalidator(*this).InvalidatePaint(context);
|
| }
|
|
|
| void LayoutBlock::ClearPreviousVisualRects() {
|
|
|