#include "cc/base/simple_enclosed_region.h"
#include <stddef.h>
#include <stdint.h>
#include "base/check_op.h"
#include "cc/base/region.h"
#include "ui/gfx/geometry/rect.h"
namespace cc {
static bool RectIsLargerArea(const gfx::Rect& a, const gfx::Rect b) { … }
SimpleEnclosedRegion::SimpleEnclosedRegion(const Region& region) { … }
SimpleEnclosedRegion::~SimpleEnclosedRegion() = default;
void SimpleEnclosedRegion::Subtract(const gfx::Rect& sub_rect) { … }
void SimpleEnclosedRegion::Union(const gfx::Rect& new_rect) { … }
gfx::Rect SimpleEnclosedRegion::GetRect(size_t i) const { … }
}