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

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

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.h
diff --git a/ash/common/system/tray/system_tray_item.h b/ash/common/system/tray/system_tray_item.h
index 2e7ca00dd71c2103ba35b3908faf15b58a9bedd8..9a69f97ec68fc133a9865e7e59f5e25b23ee5278 100644
--- a/ash/common/system/tray/system_tray_item.h
+++ b/ash/common/system/tray/system_tray_item.h
@@ -89,11 +89,6 @@ class ASH_EXPORT SystemTrayItem {
// Returns a detailed view for the item. This view is displayed standalone.
virtual views::View* CreateDetailedView(LoginStatus status);
- // Returns a notification view for the item. This view is displayed with
- // other notifications and should be the same size as default views.
- // DEPRECATED. Use the message center instead.
- virtual views::View* CreateNotificationView(LoginStatus status);
-
// These functions are called when the corresponding view item is about to be
// removed. An item should do appropriate cleanup in these functions.
// The default implementation does nothing.
@@ -137,12 +132,6 @@ class ASH_EXPORT SystemTrayItem {
// |animate| is false.
void HideDetailedView(bool animate);
- // Shows a notification for this item.
- void ShowNotificationView();
-
- // Hides the notification for this item.
- void HideNotificationView();
-
// Returns true if this item needs to force the shelf to be visible when
// the shelf is in the auto-hide state. Default is true.
virtual bool ShouldShowShelf() const;

Powered by Google App Engine
This is Rietveld 408576698