| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHROMEOS_SESSION_LOGOUT_BUTTON_TRAY_H_ | 5 #ifndef ASH_SYSTEM_CHROMEOS_SESSION_LOGOUT_BUTTON_TRAY_H_ |
| 6 #define ASH_SYSTEM_CHROMEOS_SESSION_LOGOUT_BUTTON_TRAY_H_ | 6 #define ASH_SYSTEM_CHROMEOS_SESSION_LOGOUT_BUTTON_TRAY_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/system/chromeos/session/logout_button_observer.h" | 10 #include "ash/common/system/chromeos/session/logout_button_observer.h" |
| 11 #include "ash/common/system/tray/tray_background_view.h" | 11 #include "ash/common/system/tray/tray_background_view.h" |
| 12 #include "base/compiler_specific.h" | |
| 13 #include "base/macros.h" | 12 #include "base/macros.h" |
| 14 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 15 #include "ui/views/controls/button/button.h" | 14 #include "ui/views/controls/button/button.h" |
| 16 | 15 |
| 17 namespace views { | 16 namespace views { |
| 18 class LabelButton; | 17 class LabelButton; |
| 19 } | 18 } |
| 20 | 19 |
| 21 namespace ash { | 20 namespace ash { |
| 22 | 21 |
| 23 class StatusAreaWidget; | |
| 24 | |
| 25 // Adds a logout button to the launcher's status area if enabled by the | 22 // Adds a logout button to the launcher's status area if enabled by the |
| 26 // kShowLogoutButtonInTray pref. | 23 // kShowLogoutButtonInTray pref. |
| 27 class ASH_EXPORT LogoutButtonTray : public TrayBackgroundView, | 24 class ASH_EXPORT LogoutButtonTray : public TrayBackgroundView, |
| 28 public LogoutButtonObserver, | 25 public LogoutButtonObserver, |
| 29 public views::ButtonListener { | 26 public views::ButtonListener { |
| 30 public: | 27 public: |
| 31 explicit LogoutButtonTray(StatusAreaWidget* status_area_widget); | 28 explicit LogoutButtonTray(WmShelf* wm_shelf); |
| 32 ~LogoutButtonTray() override; | 29 ~LogoutButtonTray() override; |
| 33 | 30 |
| 34 // TrayBackgroundView: | 31 // TrayBackgroundView: |
| 35 void SetShelfAlignment(ShelfAlignment alignment) override; | 32 void SetShelfAlignment(ShelfAlignment alignment) override; |
| 36 base::string16 GetAccessibleNameForTray() override; | 33 base::string16 GetAccessibleNameForTray() override; |
| 37 void HideBubbleWithView(const views::TrayBubbleView* bubble_view) override; | 34 void HideBubbleWithView(const views::TrayBubbleView* bubble_view) override; |
| 38 void ClickedOutsideBubble() override; | 35 void ClickedOutsideBubble() override; |
| 39 | 36 |
| 40 // LogoutButtonObserver: | 37 // LogoutButtonObserver: |
| 41 void OnShowLogoutButtonInTrayChanged(bool show) override; | 38 void OnShowLogoutButtonInTrayChanged(bool show) override; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 53 LoginStatus login_status_; | 50 LoginStatus login_status_; |
| 54 bool show_logout_button_in_tray_; | 51 bool show_logout_button_in_tray_; |
| 55 base::TimeDelta dialog_duration_; | 52 base::TimeDelta dialog_duration_; |
| 56 | 53 |
| 57 DISALLOW_COPY_AND_ASSIGN(LogoutButtonTray); | 54 DISALLOW_COPY_AND_ASSIGN(LogoutButtonTray); |
| 58 }; | 55 }; |
| 59 | 56 |
| 60 } // namespace ash | 57 } // namespace ash |
| 61 | 58 |
| 62 #endif // ASH_SYSTEM_CHROMEOS_SESSION_LOGOUT_BUTTON_TRAY_H_ | 59 #endif // ASH_SYSTEM_CHROMEOS_SESSION_LOGOUT_BUTTON_TRAY_H_ |
| OLD | NEW |