| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/system/tray/tray_image_item.h" | 5 #include "ash/system/tray/tray_image_item.h" |
| 6 | 6 |
| 7 #include "ash/resources/vector_icons/vector_icons.h" | 7 #include "ash/resources/vector_icons/vector_icons.h" |
| 8 #include "ash/shelf/wm_shelf_util.h" | 8 #include "ash/shelf/wm_shelf_util.h" |
| 9 #include "ash/system/tray/system_tray.h" | 9 #include "ash/system/tray/system_tray.h" |
| 10 #include "ash/system/tray/tray_constants.h" | 10 #include "ash/system/tray/tray_constants.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 TrayImageItem::~TrayImageItem() {} | 28 TrayImageItem::~TrayImageItem() {} |
| 29 | 29 |
| 30 views::View* TrayImageItem::tray_view() { | 30 views::View* TrayImageItem::tray_view() { |
| 31 return tray_view_; | 31 return tray_view_; |
| 32 } | 32 } |
| 33 | 33 |
| 34 views::View* TrayImageItem::CreateTrayView(LoginStatus status) { | 34 views::View* TrayImageItem::CreateTrayView(LoginStatus status) { |
| 35 CHECK(!tray_view_); | 35 CHECK(!tray_view_); |
| 36 tray_view_ = new TrayItemView(this); | 36 tray_view_ = new TrayItemView(this); |
| 37 tray_view_->CreateImageView(); | 37 tray_view_->CreateImageView(); |
| 38 UpdateImageOnImageView(); | 38 SetImageIcon(icon_); |
| 39 tray_view_->SetVisible(GetInitialVisibility()); | 39 tray_view_->SetVisible(GetInitialVisibility()); |
| 40 return tray_view_; | 40 return tray_view_; |
| 41 } | 41 } |
| 42 | 42 |
| 43 void TrayImageItem::DestroyTrayView() { | 43 void TrayImageItem::DestroyTrayView() { |
| 44 tray_view_ = nullptr; | 44 tray_view_ = nullptr; |
| 45 } | 45 } |
| 46 | 46 |
| 47 void TrayImageItem::SetIconColor(SkColor color) { | 47 void TrayImageItem::SetIconColor(SkColor color) { |
| 48 icon_color_ = color; | 48 icon_color_ = color; |
| 49 UpdateImageOnImageView(); | 49 SetImageIcon(icon_); |
| 50 } | 50 } |
| 51 | 51 |
| 52 void TrayImageItem::UpdateImageOnImageView() { | 52 void TrayImageItem::SetImageIcon(const gfx::VectorIcon& icon) { |
| 53 if (!tray_view_) | 53 if (!tray_view_) |
| 54 return; | 54 return; |
| 55 | 55 |
| 56 tray_view_->image_view()->SetImage( | 56 tray_view_->image_view()->SetImage( |
| 57 gfx::CreateVectorIcon(icon_, kTrayIconSize, icon_color_)); | 57 gfx::CreateVectorIcon(icon, kTrayIconSize, icon_color_)); |
| 58 } | 58 } |
| 59 | 59 |
| 60 } // namespace ash | 60 } // namespace ash |
| OLD | NEW |