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

Unified Diff: ash/common/system/tray/system_tray_delegate.cc

Issue 2252823002: Updates to Ash material design icons used for TrayImageItem (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
Index: ash/common/system/tray/system_tray_delegate.cc
diff --git a/ash/common/system/tray/system_tray_delegate.cc b/ash/common/system/tray/system_tray_delegate.cc
index dd481ab3cf926eeaf10f7e59f5600c398f71fe0e..16d126c9a885386be6d1745554bc492483f58dbb 100644
--- a/ash/common/system/tray/system_tray_delegate.cc
+++ b/ash/common/system/tray/system_tray_delegate.cc
@@ -23,7 +23,7 @@ BluetoothDeviceInfo::BluetoothDeviceInfo()
BluetoothDeviceInfo::~BluetoothDeviceInfo() {}
UpdateInfo::UpdateInfo()
- : severity(UPDATE_NORMAL),
+ : severity(UPDATE_NONE),
update_required(false),
factory_reset_required(false) {}
@@ -74,7 +74,7 @@ bool SystemTrayDelegate::IsUserChild() const {
}
void SystemTrayDelegate::GetSystemUpdateInfo(UpdateInfo* info) const {
- info->severity = UpdateInfo::UPDATE_NORMAL;
+ info->severity = UpdateInfo::UPDATE_NONE;
info->update_required = false;
info->factory_reset_required = false;
}

Powered by Google App Engine
This is Rietveld 408576698