#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INTRINSIC_SIZING_INFO_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INTRINSIC_SIZING_INFO_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "ui/gfx/geometry/size_f.h"
namespace blink {
struct IntrinsicSizingInfo { … };
inline float ResolveWidthForRatio(float height,
const gfx::SizeF& natural_ratio) { … }
inline float ResolveHeightForRatio(float width,
const gfx::SizeF& natural_ratio) { … }
CORE_EXPORT gfx::SizeF ConcreteObjectSize(
const IntrinsicSizingInfo& sizing_info,
const gfx::SizeF& default_object_size);
}
#endif