Index: ui/gfx/rect.cc |
diff --git a/ui/gfx/rect.cc b/ui/gfx/rect.cc |
index 0fe38131de3e327a6f7f3ddb8201780f1b683600..a562faf56c4067222cc96bd31e483baf886def75 100644 |
--- a/ui/gfx/rect.cc |
+++ b/ui/gfx/rect.cc |
@@ -23,27 +23,6 @@ template class RectBase<Rect, Point, Size, Insets, Vector2d, int>; |
typedef class RectBase<Rect, Point, Size, Insets, Vector2d, int> RectBaseT; |
-Rect::Rect() : RectBaseT(gfx::Point()) { |
-} |
- |
-Rect::Rect(int width, int height) |
- : RectBaseT(gfx::Size(width, height)) { |
-} |
- |
-Rect::Rect(int x, int y, int width, int height) |
- : RectBaseT(gfx::Point(x, y), gfx::Size(width, height)) { |
-} |
- |
-Rect::Rect(const gfx::Size& size) |
- : RectBaseT(size) { |
-} |
- |
-Rect::Rect(const gfx::Point& origin, const gfx::Size& size) |
- : RectBaseT(origin, size) { |
-} |
- |
-Rect::~Rect() {} |
- |
#if defined(OS_WIN) |
Rect::Rect(const RECT& r) |
: RectBaseT(gfx::Point(r.left, r.top)) { |