Index: ui/gfx/rect_f.cc |
diff --git a/ui/gfx/rect_f.cc b/ui/gfx/rect_f.cc |
index 4413fb85f71832024f3b1c560aada3aabe590799..d7b1089c96de6c556d3fc08b85ebc2e1fe86c4cd 100644 |
--- a/ui/gfx/rect_f.cc |
+++ b/ui/gfx/rect_f.cc |
@@ -19,27 +19,6 @@ template class RectBase<RectF, PointF, SizeF, InsetsF, Vector2dF, float>; |
typedef class RectBase<RectF, PointF, SizeF, InsetsF, Vector2dF, |
float> RectBaseT; |
-RectF::RectF() : RectBaseT(gfx::SizeF()) { |
-} |
- |
-RectF::RectF(float width, float height) |
- : RectBaseT(gfx::SizeF(width, height)) { |
-} |
- |
-RectF::RectF(float x, float y, float width, float height) |
- : RectBaseT(gfx::PointF(x, y), gfx::SizeF(width, height)) { |
-} |
- |
-RectF::RectF(const gfx::SizeF& size) |
- : RectBaseT(size) { |
-} |
- |
-RectF::RectF(const gfx::PointF& origin, const gfx::SizeF& size) |
- : RectBaseT(origin, size) { |
-} |
- |
-RectF::~RectF() {} |
- |
bool RectF::IsExpressibleAsRect() const { |
return IsExpressibleAsInt(x()) && IsExpressibleAsInt(y()) && |
IsExpressibleAsInt(width()) && IsExpressibleAsInt(height()) && |