| 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 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/system/tray/system_tray_item.h" | 9 #include "ash/common/system/tray/system_tray_item.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "third_party/skia/include/core/SkColor.h" | 11 #include "third_party/skia/include/core/SkColor.h" |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 class ImageView; | 14 class ImageView; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace ash { | 17 namespace ash { |
| 18 class TrayItemView; | 18 class TrayItemView; |
| 19 | 19 |
| 20 // A system tray item that uses an image as its "tray view" in the status area. | |
| 21 class ASH_EXPORT TrayImageItem : public SystemTrayItem { | 20 class ASH_EXPORT TrayImageItem : public SystemTrayItem { |
| 22 public: | 21 public: |
| 23 TrayImageItem(SystemTray* system_tray, int resource_id, UmaType uma_type); | 22 TrayImageItem(SystemTray* system_tray, int resource_id, UmaType uma_type); |
| 24 ~TrayImageItem() override; | 23 ~TrayImageItem() override; |
| 25 | 24 |
| 26 views::View* tray_view(); | 25 views::View* tray_view(); |
| 27 | 26 |
| 28 protected: | 27 protected: |
| 29 virtual bool GetInitialVisibility() = 0; | 28 virtual bool GetInitialVisibility() = 0; |
| 30 | 29 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 51 void UpdateImageOnImageView(); | 50 void UpdateImageOnImageView(); |
| 52 | 51 |
| 53 // The resource ID for the non-material design icon in the tray. | 52 // The resource ID for the non-material design icon in the tray. |
| 54 // TODO(tdanderson): This is only used for non-material design, so remove it | 53 // TODO(tdanderson): This is only used for non-material design, so remove it |
| 55 // when material design is the default. See crbug.com/625692. | 54 // when material design is the default. See crbug.com/625692. |
| 56 int resource_id_; | 55 int resource_id_; |
| 57 | 56 |
| 58 // The color of the material design icon in the tray. | 57 // The color of the material design icon in the tray. |
| 59 SkColor icon_color_; | 58 SkColor icon_color_; |
| 60 | 59 |
| 61 // The image view in the tray. | |
| 62 TrayItemView* tray_view_; | 60 TrayItemView* tray_view_; |
| 63 | 61 |
| 64 DISALLOW_COPY_AND_ASSIGN(TrayImageItem); | 62 DISALLOW_COPY_AND_ASSIGN(TrayImageItem); |
| 65 }; | 63 }; |
| 66 | 64 |
| 67 } // namespace ash | 65 } // namespace ash |
| 68 | 66 |
| 69 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_ | 67 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_ |
| OLD | NEW |