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

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

Issue 2583393002: Send notification to users upon receiving sms messages (Closed)
Patch Set: Created 3 years, 11 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_item.cc
diff --git a/ash/common/system/tray/system_tray_item.cc b/ash/common/system/tray/system_tray_item.cc
index 164a0e419ecc6490163790e075a73de4010549cd..0c1deb57309561e2ca066a9f63bfceaf4194457f 100644
--- a/ash/common/system/tray/system_tray_item.cc
+++ b/ash/common/system/tray/system_tray_item.cc
@@ -29,10 +29,6 @@ views::View* SystemTrayItem::CreateDetailedView(LoginStatus status) {
return nullptr;
}
-views::View* SystemTrayItem::CreateNotificationView(LoginStatus status) {
- return nullptr;
-}
-
void SystemTrayItem::DestroyTrayView() {}
void SystemTrayItem::DestroyDefaultView() {}
@@ -72,14 +68,6 @@ void SystemTrayItem::HideDetailedView(bool animate) {
system_tray()->HideDetailedView(this, animate);
}
-void SystemTrayItem::ShowNotificationView() {
- system_tray()->ShowNotificationView(this);
-}
-
-void SystemTrayItem::HideNotificationView() {
- system_tray()->HideNotificationView(this);
-}
-
bool SystemTrayItem::ShouldShowShelf() const {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698