| Index: ui/gfx/size.cc
|
| diff --git a/ui/gfx/size.cc b/ui/gfx/size.cc
|
| index 6d28ded281ab4b039bd63aea70ae695214269588..a9a0bddba882669be74a5be856ef6352c312f396 100644
|
| --- a/ui/gfx/size.cc
|
| +++ b/ui/gfx/size.cc
|
| @@ -16,13 +16,6 @@ namespace gfx {
|
|
|
| template class SizeBase<Size, int>;
|
|
|
| -Size::Size() : SizeBase<Size, int>(0, 0) {}
|
| -
|
| -Size::Size(int width, int height) : SizeBase<Size, int>(0, 0) {
|
| - set_width(width);
|
| - set_height(height);
|
| -}
|
| -
|
| #if defined(OS_MACOSX)
|
| Size::Size(const CGSize& s) : SizeBase<Size, int>(0, 0) {
|
| set_width(s.width);
|
| @@ -36,8 +29,6 @@ Size& Size::operator=(const CGSize& s) {
|
| }
|
| #endif
|
|
|
| -Size::~Size() {}
|
| -
|
| #if defined(OS_WIN)
|
| SIZE Size::ToSIZE() const {
|
| SIZE s;
|
|
|