| Index: ash/common/system/tray/fixed_sized_image_view.cc
|
| diff --git a/ash/common/system/tray/fixed_sized_image_view.cc b/ash/common/system/tray/fixed_sized_image_view.cc
|
| index 80a724207d92ab9e984d262b1871316b17594efd..a593b6f2a3234429de461072620dba19a293fbce 100644
|
| --- a/ash/common/system/tray/fixed_sized_image_view.cc
|
| +++ b/ash/common/system/tray/fixed_sized_image_view.cc
|
| @@ -7,14 +7,12 @@
|
| namespace ash {
|
|
|
| FixedSizedImageView::FixedSizedImageView(int width, int height)
|
| - : width_(width),
|
| - height_(height) {
|
| + : width_(width), height_(height) {
|
| SetHorizontalAlignment(views::ImageView::CENTER);
|
| SetVerticalAlignment(views::ImageView::CENTER);
|
| }
|
|
|
| -FixedSizedImageView::~FixedSizedImageView() {
|
| -}
|
| +FixedSizedImageView::~FixedSizedImageView() {}
|
|
|
| gfx::Size FixedSizedImageView::GetPreferredSize() const {
|
| gfx::Size size = views::ImageView::GetPreferredSize();
|
|
|