| Index: ash/system/tray/system_tray_controller.cc
|
| diff --git a/ash/system/tray/system_tray_controller.cc b/ash/system/tray/system_tray_controller.cc
|
| index 022f97a1dc3070c655d5cfd4c8247ed85fed688d..8b40876cc23243a3fb00c52b738ae8d6d0a12a1e 100644
|
| --- a/ash/system/tray/system_tray_controller.cc
|
| +++ b/ash/system/tray/system_tray_controller.cc
|
| @@ -184,14 +184,16 @@ void SystemTrayController::SetUse24HourClock(bool use_24_hour) {
|
| }
|
|
|
| void SystemTrayController::ShowUpdateIcon(mojom::UpdateSeverity severity,
|
| - bool factory_reset_required) {
|
| + bool factory_reset_required,
|
| + mojom::UpdateType update_type) {
|
| // Show the icon on all displays.
|
| for (WmWindow* root : ShellPort::Get()->GetAllRootWindows()) {
|
| ash::SystemTray* tray = root->GetRootWindowController()->GetSystemTray();
|
| // External monitors might not have a tray yet.
|
| if (!tray)
|
| continue;
|
| - tray->tray_update()->ShowUpdateIcon(severity, factory_reset_required);
|
| + tray->tray_update()->ShowUpdateIcon(severity, factory_reset_required,
|
| + update_type);
|
| }
|
| }
|
|
|
|
|