chromium/third_party/blink/renderer/core/layout/exclusions/exclusion_area.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 that represents an exclusion for float and initial letter box.
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);

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_EXCLUSIONS_EXCLUSION_AREA_H_