| Index: Source/core/layout/LayoutObject.h
|
| diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
|
| index cb1c712f132fe869ae6f4793e744140162dd40c2..02251924dbd59d1409ff0b65d9e19c4829973723 100644
|
| --- a/Source/core/layout/LayoutObject.h
|
| +++ b/Source/core/layout/LayoutObject.h
|
| @@ -628,7 +628,7 @@ public:
|
|
|
| Element* offsetParent() const;
|
|
|
| - void markContainerChainForLayout(bool scheduleRelayout = true, LayoutObject* newRoot = nullptr, SubtreeLayoutScope* = nullptr);
|
| + void markContainerChainForLayout(bool scheduleRelayout = true, SubtreeLayoutScope* = nullptr);
|
| void setNeedsLayout(LayoutInvalidationReasonForTracing, MarkingBehavior = MarkContainerChain, SubtreeLayoutScope* = nullptr);
|
| void setNeedsLayoutAndFullPaintInvalidation(LayoutInvalidationReasonForTracing, MarkingBehavior = MarkContainerChain, SubtreeLayoutScope* = nullptr);
|
| void clearNeedsLayout();
|
| @@ -1510,7 +1510,7 @@ inline void LayoutObject::setNeedsLayout(LayoutInvalidationReasonForTracing reas
|
| "data",
|
| InspectorLayoutInvalidationTrackingEvent::data(this, reason));
|
| if (markParents == MarkContainerChain && (!layouter || layouter->root() != this))
|
| - markContainerChainForLayout(true, 0, layouter);
|
| + markContainerChainForLayout(true, layouter);
|
| }
|
| }
|
|
|
| @@ -1543,7 +1543,7 @@ inline void LayoutObject::setChildNeedsLayout(MarkingBehavior markParents, Subtr
|
| setNormalChildNeedsLayout(true);
|
| // FIXME: Replace MarkOnlyThis with the SubtreeLayoutScope code path and remove the MarkingBehavior argument entirely.
|
| if (!alreadyNeededLayout && markParents == MarkContainerChain && (!layouter || layouter->root() != this))
|
| - markContainerChainForLayout(true, 0, layouter);
|
| + markContainerChainForLayout(true, layouter);
|
| }
|
|
|
| inline void LayoutObject::setNeedsPositionedMovementLayout()
|
|
|