Index: ui/gfx/vector2d_f.cc |
diff --git a/ui/gfx/vector2d_f.cc b/ui/gfx/vector2d_f.cc |
index f0d28c94335875b0dd1281676546ea03567ebeb1..0b4049c6bde6ef4074e12ecb56eaf3f0f722774d 100644 |
--- a/ui/gfx/vector2d_f.cc |
+++ b/ui/gfx/vector2d_f.cc |
@@ -10,16 +10,6 @@ |
namespace gfx { |
-Vector2dF::Vector2dF() |
- : x_(0), |
- y_(0) { |
-} |
- |
-Vector2dF::Vector2dF(float x, float y) |
- : x_(x), |
- y_(y) { |
-} |
- |
std::string Vector2dF::ToString() const { |
return base::StringPrintf("[%f %f]", x_, y_); |
} |