#include "ui/views/layout/layout_types.h"
#include <algorithm>
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
namespace views {
void SizeBound::operator+=(const SizeBound& rhs) { … }
void SizeBound::operator-=(const SizeBound& rhs) { … }
std::string SizeBound::ToString() const { … }
SizeBound operator+(const SizeBound& lhs, const SizeBound& rhs) { … }
SizeBound operator-(const SizeBound& lhs, const SizeBound& rhs) { … }
void SizeBounds::Enlarge(int width, int height) { … }
SizeBounds SizeBounds::Inset(const gfx::Insets& inset) const { … }
std::string SizeBounds::ToString() const { … }
bool CanFitInBounds(const gfx::Size& size, const SizeBounds& bounds) { … }
}