#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_EXCLUSIONS_EXCLUSION_AREA_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_EXCLUSIONS_EXCLUSION_AREA_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/geometry/bfc_rect.h"
#include "third_party/blink/renderer/core/style/computed_style_constants.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/wtf/ref_counted.h"
namespace blink {
class LayoutBox;
struct CORE_EXPORT ExclusionShapeData final
: public GarbageCollected<ExclusionShapeData> { … };
struct CORE_EXPORT ExclusionArea final
: public GarbageCollected<ExclusionArea> { … };
ExclusionAreaPtrArray;
std::ostream& operator<<(std::ostream& os, const ExclusionArea& exclusion);
std::ostream& operator<<(std::ostream& os, const ExclusionArea* exclusion);
}
#endif