| Index: Source/core/layout/LayoutBox.h
|
| diff --git a/Source/core/layout/LayoutBox.h b/Source/core/layout/LayoutBox.h
|
| index 82eed0f075969357144384e105ac6408ef135df3..58ab793a652d0e9282615f421f41b1e46ffa871c 100644
|
| --- a/Source/core/layout/LayoutBox.h
|
| +++ b/Source/core/layout/LayoutBox.h
|
| @@ -26,13 +26,14 @@
|
| #include "core/CoreExport.h"
|
| #include "core/layout/LayoutBoxModelObject.h"
|
| #include "core/layout/OverflowModel.h"
|
| -#include "core/layout/shapes/ShapeOutsideInfo.h"
|
| #include "platform/scroll/ScrollTypes.h"
|
| #include "platform/scroll/ScrollableArea.h"
|
|
|
| namespace blink {
|
|
|
| +class LayoutBlockFlow;
|
| class LayoutMultiColumnSpannerPlaceholder;
|
| +class ShapeOutsideInfo;
|
|
|
| struct PaintInfo;
|
|
|
| @@ -713,10 +714,7 @@ public:
|
|
|
| bool hasSameDirectionAs(const LayoutBox* object) const { return style()->direction() == object->style()->direction(); }
|
|
|
| - ShapeOutsideInfo* shapeOutsideInfo() const
|
| - {
|
| - return ShapeOutsideInfo::isEnabledFor(*this) ? ShapeOutsideInfo::info(*this) : nullptr;
|
| - }
|
| + ShapeOutsideInfo* shapeOutsideInfo() const;
|
|
|
| void markShapeOutsideDependentsForLayout()
|
| {
|
|
|