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

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

Issue 2558043006: ash: Use system tray mojo interface to show system update tray icon (Closed)
Patch Set: fix gcc Created 4 years 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 | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/common/system/tray/system_tray_item.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 69ebf40e338dab0aa93b95198e41cacb1e9a189e..e3ba5b9c9bdbc47c13ef25d54b2efd61f9660d8d 100644
--- a/ash/common/system/tray/system_tray_delegate.cc
+++ b/ash/common/system/tray/system_tray_delegate.cc
@@ -17,13 +17,6 @@ BluetoothDeviceInfo::BluetoothDeviceInfo(const BluetoothDeviceInfo& other) =
BluetoothDeviceInfo::~BluetoothDeviceInfo() {}
-UpdateInfo::UpdateInfo()
- : severity(UPDATE_NONE),
- update_required(false),
- factory_reset_required(false) {}
-
-UpdateInfo::~UpdateInfo() {}
-
SystemTrayDelegate::SystemTrayDelegate() {}
SystemTrayDelegate::~SystemTrayDelegate() {}
@@ -66,12 +59,6 @@ bool SystemTrayDelegate::IsUserChild() const {
return false;
}
-void SystemTrayDelegate::GetSystemUpdateInfo(UpdateInfo* info) const {
- info->severity = UpdateInfo::UPDATE_NONE;
- info->update_required = false;
- info->factory_reset_required = false;
-}
-
bool SystemTrayDelegate::ShouldShowSettings() const {
return false;
}
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/common/system/tray/system_tray_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698