| Index: ash/common/system/chromeos/screen_security/screen_tray_item.h
|
| diff --git a/ash/common/system/chromeos/screen_security/screen_tray_item.h b/ash/common/system/chromeos/screen_security/screen_tray_item.h
|
| index 06590994477a446b4b20d1cdf6ac61d39b3c798c..7f2908f552396de17185cdabe972994df04d8c5a 100644
|
| --- a/ash/common/system/chromeos/screen_security/screen_tray_item.h
|
| +++ b/ash/common/system/chromeos/screen_security/screen_tray_item.h
|
| @@ -28,7 +28,7 @@ namespace tray {
|
|
|
| class ScreenTrayView : public TrayItemView {
|
| public:
|
| - ScreenTrayView(ScreenTrayItem* screen_tray_item, int icon_id);
|
| + explicit ScreenTrayView(ScreenTrayItem* screen_tray_item);
|
| ~ScreenTrayView() override;
|
|
|
| void Update();
|
| @@ -42,7 +42,6 @@ class ScreenTrayView : public TrayItemView {
|
| class ScreenStatusView : public views::View, public views::ButtonListener {
|
| public:
|
| ScreenStatusView(ScreenTrayItem* screen_tray_item,
|
| - int icon_id,
|
| const base::string16& label_text,
|
| const base::string16& stop_button_text);
|
| ~ScreenStatusView() override;
|
| @@ -61,7 +60,6 @@ class ScreenStatusView : public views::View, public views::ButtonListener {
|
| views::ImageView* icon_;
|
| views::Label* label_;
|
| TrayPopupLabelButton* stop_button_;
|
| - int icon_id_;
|
| base::string16 label_text_;
|
| base::string16 stop_button_text_;
|
|
|
|
|