Index: ui/gfx/vector2d.cc |
diff --git a/ui/gfx/vector2d.cc b/ui/gfx/vector2d.cc |
index a1492cbd119be73e6e5a02b20848d5c139d5ea6a..d8353095506b2d1cc9f4e9066fe2e3fa00be07d6 100644 |
--- a/ui/gfx/vector2d.cc |
+++ b/ui/gfx/vector2d.cc |
@@ -10,12 +10,6 @@ |
namespace gfx { |
-Vector2d::Vector2d() : x_(0), y_(0) { |
-} |
- |
-Vector2d::Vector2d(int x, int y) : x_(x), y_(y) { |
-} |
- |
bool Vector2d::IsZero() const { |
return x_ == 0 && y_ == 0; |
} |