#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_SPACE_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_SPACE_UTILS_H_
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/layout_input_node.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
#include "third_party/blink/renderer/platform/geometry/layout_unit.h"
namespace blink {
class ConstraintSpaceBuilder;
struct BfcOffset;
CORE_EXPORT bool AdjustToClearance(LayoutUnit clearance_offset,
BfcOffset* offset);
void SetOrthogonalFallbackInlineSize(const ComputedStyle& parent_style,
const LayoutInputNode child,
ConstraintSpaceBuilder* builder);
inline void SetOrthogonalFallbackInlineSizeIfNeeded(
const ComputedStyle& parent_style,
const LayoutInputNode child,
ConstraintSpaceBuilder* builder) { … }
bool ShouldBlockContainerChildStretchAutoInlineSize(const BlockNode&);
}
#endif