Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1490)

Unified Diff: chrome/browser/ui/ash/system_tray_client.cc

Issue 2720613007: Chrome OS component updater: UpdateSeverity::LOW (Closed)
Patch Set: Update test details Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/system_tray_client.cc
diff --git a/chrome/browser/ui/ash/system_tray_client.cc b/chrome/browser/ui/ash/system_tray_client.cc
index 311cc75e94c6b8fc5831431e7fed461fbf34562b..aec8fe2534658d3d3580e2dc8d838c9cb11c9647 100644
--- a/chrome/browser/ui/ash/system_tray_client.cc
+++ b/chrome/browser/ui/ash/system_tray_client.cc
@@ -359,9 +359,9 @@ void SystemTrayClient::HandleUpdateAvailable() {
// Get the Chrome update severity.
ash::mojom::UpdateSeverity severity = GetUpdateSeverity(detector);
- // Flash updates are elevated severity unless the Chrome severity is higher.
+ // Flash updates are low severity unless the Chrome severity is higher.
if (flash_update_available_)
- severity = std::max(severity, ash::mojom::UpdateSeverity::ELEVATED);
+ severity = std::max(severity, ash::mojom::UpdateSeverity::LOW);
system_tray_->ShowUpdateIcon(severity, detector->is_factory_reset_required());
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698