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

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

Issue 10332152: Add TraySms for SMS messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix bubble sizing code Created 8 years, 7 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/system/tray/system_tray_item.h ('k') | ash/system/tray/tray_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/system_tray_item.cc
diff --git a/ash/system/tray/system_tray_item.cc b/ash/system/tray/system_tray_item.cc
index 61ea10f528247980b67663161e583bf5605c9fe7..d11a1091dc762aa2dd7612b7ed6dfc82171c5315 100644
--- a/ash/system/tray/system_tray_item.cc
+++ b/ash/system/tray/system_tray_item.cc
@@ -49,6 +49,9 @@ void SystemTrayItem::TransitionDetailedView() {
BUBBLE_USE_EXISTING);
}
+void SystemTrayItem::UpdateAfterLoginStatusChange(user::LoginStatus status) {
+}
+
void SystemTrayItem::PopupDetailedView(int for_seconds, bool activate) {
Shell::GetInstance()->tray()->ShowDetailedView(this, for_seconds, activate,
BUBBLE_CREATE_NEW);
@@ -58,6 +61,10 @@ void SystemTrayItem::SetDetailedViewCloseDelay(int for_seconds) {
Shell::GetInstance()->tray()->SetDetailedViewCloseDelay(for_seconds);
}
+void SystemTrayItem::HideDetailedView() {
+ Shell::GetInstance()->tray()->HideDetailedView(this);
+}
+
void SystemTrayItem::ShowNotificationView() {
Shell::GetInstance()->tray()->ShowNotificationView(this);
}
« no previous file with comments | « ash/system/tray/system_tray_item.h ('k') | ash/system/tray/tray_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698