#ifndef UI_GFX_GEOMETRY_INSETS_F_H_
#define UI_GFX_GEOMETRY_INSETS_F_H_
#include "ui/gfx/geometry/geometry_export.h"
#include "ui/gfx/geometry/insets_outsets_f_base.h"
namespace gfx {
class OutsetsF;
class GEOMETRY_EXPORT InsetsF : public InsetsOutsetsFBase<InsetsF> { … };
inline InsetsF ScaleInsets(InsetsF i, float x_scale, float y_scale) { … }
inline InsetsF ScaleInsets(const InsetsF& i, float scale) { … }
inline InsetsF operator+(InsetsF lhs, const InsetsF& rhs) { … }
inline InsetsF operator-(InsetsF lhs, const InsetsF& rhs) { … }
void PrintTo(const InsetsF&, ::std::ostream* os);
}
#endif