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

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

Issue 2583393002: Send notification to users upon receiving sms messages (Closed)
Patch Set: update return type 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 | « ash/common/system/tray/system_tray_item.h ('k') | ash/common/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..f650c1007833e998d3b082cb48d7e85b370f85b9 100644
--- a/ash/common/system/tray/system_tray_item.cc
+++ b/ash/common/system/tray/system_tray_item.cc
@@ -29,18 +29,12 @@ views::View* SystemTrayItem::CreateDetailedView(LoginStatus status) {
return nullptr;
}
-views::View* SystemTrayItem::CreateNotificationView(LoginStatus status) {
- return nullptr;
-}
-
void SystemTrayItem::DestroyTrayView() {}
void SystemTrayItem::DestroyDefaultView() {}
void SystemTrayItem::DestroyDetailedView() {}
-void SystemTrayItem::DestroyNotificationView() {}
-
void SystemTrayItem::TransitionDetailedView() {
const int transition_delay =
GetTrayConstant(TRAY_POPUP_TRANSITION_TO_DETAILED_DELAY);
@@ -72,14 +66,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;
}
« no previous file with comments | « ash/common/system/tray/system_tray_item.h ('k') | ash/common/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698