This source file includes following definitions.
- ToString
#include "ui/gfx/geometry/insets_f.h"
#include "base/strings/stringprintf.h"
namespace gfx {
template class InsetsBase<InsetsF, float>;
InsetsF::InsetsF() : InsetsBase<InsetsF, float>(0, 0, 0, 0) {}
InsetsF::InsetsF(float top, float left, float bottom, float right)
: InsetsBase<InsetsF, float>(top, left, bottom, right) {}
InsetsF::~InsetsF() {}
std::string InsetsF::ToString() const {
return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
}
}