Index: ui/gfx/point_f.cc |
diff --git a/ui/gfx/point_f.cc b/ui/gfx/point_f.cc |
index ea683030e528527b51ecec92a37826c90f7d6d44..26080f593793057f85e4e3d6fc1643774f884078 100644 |
--- a/ui/gfx/point_f.cc |
+++ b/ui/gfx/point_f.cc |
@@ -10,14 +10,6 @@ namespace gfx { |
template class PointBase<PointF, float, Vector2dF>; |
-PointF::PointF() : PointBase<PointF, float, Vector2dF>(0, 0) { |
-} |
- |
-PointF::PointF(float x, float y) : PointBase<PointF, float, Vector2dF>(x, y) { |
-} |
- |
-PointF::~PointF() {} |
- |
std::string PointF::ToString() const { |
return base::StringPrintf("%f,%f", x(), y()); |
} |