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

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

Issue 2690543003: Send notification to users upon receiving sms messages (Closed)
Patch Set: 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
Index: ash/common/system/tray/system_tray.cc
diff --git a/ash/common/system/tray/system_tray.cc b/ash/common/system/tray/system_tray.cc
index fae5c963e3f98c78e69bf913cda44aaf9c45f85c..1e9a76329b6a1d31f0af6259eee6e9a24defaf17 100644
--- a/ash/common/system/tray/system_tray.cc
+++ b/ash/common/system/tray/system_tray.cc
@@ -21,7 +21,6 @@
#include "ash/common/system/chromeos/enterprise/tray_enterprise.h"
#include "ash/common/system/chromeos/media_security/multi_profile_media_tray_item.h"
#include "ash/common/system/chromeos/network/tray_network.h"
-#include "ash/common/system/chromeos/network/tray_sms.h"
#include "ash/common/system/chromeos/network/tray_vpn.h"
#include "ash/common/system/chromeos/power/power_status.h"
#include "ash/common/system/chromeos/power/tray_power.h"
@@ -292,7 +291,6 @@ void SystemTray::CreateItems(SystemTrayDelegate* delegate) {
tray_network_ = new TrayNetwork(this);
AddTrayItem(base::WrapUnique(tray_network_));
AddTrayItem(base::MakeUnique<TrayVPN>(this));
- AddTrayItem(base::MakeUnique<TraySms>(this));
AddTrayItem(base::MakeUnique<TrayBluetooth>(this));
tray_cast_ = new TrayCast(this);
AddTrayItem(base::WrapUnique(tray_cast_));

Powered by Google App Engine
This is Rietveld 408576698