#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_PAINT_CULL_RECT_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_PAINT_CULL_RECT_H_
#include <limits>
#include <optional>
#include "third_party/blink/renderer/platform/geometry/infinite_int_rect.h"
#include "third_party/blink/renderer/platform/geometry/layout_unit.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "ui/gfx/geometry/rect.h"
namespace gfx {
class RectF;
}
namespace blink {
class AffineTransform;
class PropertyTreeState;
class TransformPaintPropertyNode;
class PLATFORM_EXPORT CullRect { … };
inline bool operator==(const CullRect& a, const CullRect& b) { … }
inline bool operator!=(const CullRect& a, const CullRect& b) { … }
inline std::ostream& operator<<(std::ostream& os, const CullRect& cull_rect) { … }
}
#endif