| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_SYSTEM_STATUS_AREA_WIDGET_H_ | 5 #ifndef ASH_SYSTEM_STATUS_AREA_WIDGET_H_ |
| 6 #define ASH_SYSTEM_STATUS_AREA_WIDGET_H_ | 6 #define ASH_SYSTEM_STATUS_AREA_WIDGET_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/login_status.h" | 9 #include "ash/common/login_status.h" |
| 10 #include "ash/common/shelf/shelf_types.h" | 10 #include "ash/common/shelf/shelf_types.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 // Creates the SystemTray, WebNotificationTray and LogoutButtonTray. | 32 // Creates the SystemTray, WebNotificationTray and LogoutButtonTray. |
| 33 void CreateTrayViews(); | 33 void CreateTrayViews(); |
| 34 | 34 |
| 35 // Destroys the system tray and web notification tray. Called before | 35 // Destroys the system tray and web notification tray. Called before |
| 36 // tearing down the windows to avoid shutdown ordering issues. | 36 // tearing down the windows to avoid shutdown ordering issues. |
| 37 void Shutdown(); | 37 void Shutdown(); |
| 38 | 38 |
| 39 // Update the alignment of the widget and tray views. | 39 // Update the alignment of the widget and tray views. |
| 40 void SetShelfAlignment(ShelfAlignment alignment); | 40 void SetShelfAlignment(ShelfAlignment alignment); |
| 41 | 41 |
| 42 // Set the visibility of system notifications. | |
| 43 void SetHideSystemNotifications(bool hide); | |
| 44 | |
| 45 // Called by the client when the login status changes. Caches login_status | 42 // Called by the client when the login status changes. Caches login_status |
| 46 // and calls UpdateAfterLoginStatusChange for the system tray and the web | 43 // and calls UpdateAfterLoginStatusChange for the system tray and the web |
| 47 // notification tray. | 44 // notification tray. |
| 48 void UpdateAfterLoginStatusChange(LoginStatus login_status); | 45 void UpdateAfterLoginStatusChange(LoginStatus login_status); |
| 49 | 46 |
| 50 StatusAreaWidgetDelegate* status_area_widget_delegate() { | 47 StatusAreaWidgetDelegate* status_area_widget_delegate() { |
| 51 return status_area_widget_delegate_; | 48 return status_area_widget_delegate_; |
| 52 } | 49 } |
| 53 SystemTray* system_tray() { return system_tray_; } | 50 SystemTray* system_tray() { return system_tray_; } |
| 54 WebNotificationTray* web_notification_tray() { | 51 WebNotificationTray* web_notification_tray() { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 LoginStatus login_status_; | 94 LoginStatus login_status_; |
| 98 | 95 |
| 99 WmShelf* wm_shelf_; | 96 WmShelf* wm_shelf_; |
| 100 | 97 |
| 101 DISALLOW_COPY_AND_ASSIGN(StatusAreaWidget); | 98 DISALLOW_COPY_AND_ASSIGN(StatusAreaWidget); |
| 102 }; | 99 }; |
| 103 | 100 |
| 104 } // namespace ash | 101 } // namespace ash |
| 105 | 102 |
| 106 #endif // ASH_SYSTEM_STATUS_AREA_WIDGET_H_ | 103 #endif // ASH_SYSTEM_STATUS_AREA_WIDGET_H_ |
| OLD | NEW |