| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_ | 5 #ifndef ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_ |
| 6 #define ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_ | 6 #define ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_ |
| 7 | 7 |
| 8 #include "ash/system/chromeos/screen_security/screen_share_observer.h" | 8 #include "ash/system/chromeos/screen_security/screen_share_observer.h" |
| 9 #include "ash/system/chromeos/screen_security/screen_tray_item.h" | 9 #include "ash/system/chromeos/screen_security/screen_tray_item.h" |
| 10 | 10 |
| 11 namespace views { | 11 namespace views { |
| 12 class View; | 12 class View; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 | 16 |
| 17 class ASH_EXPORT ScreenShareTrayItem : public ScreenTrayItem, | 17 class ASH_EXPORT ScreenShareTrayItem : public ScreenTrayItem, |
| 18 public ScreenShareObserver { | 18 public ScreenShareObserver { |
| 19 public: | 19 public: |
| 20 explicit ScreenShareTrayItem(SystemTray* system_tray); | 20 explicit ScreenShareTrayItem(SystemTray* system_tray); |
| 21 virtual ~ScreenShareTrayItem(); | 21 ~ScreenShareTrayItem() override; |
| 22 | 22 |
| 23 private: | 23 private: |
| 24 // Overridden from SystemTrayItem. | 24 // Overridden from SystemTrayItem. |
| 25 virtual views::View* CreateTrayView(user::LoginStatus status) override; | 25 views::View* CreateTrayView(user::LoginStatus status) override; |
| 26 virtual views::View* CreateDefaultView(user::LoginStatus status) override; | 26 views::View* CreateDefaultView(user::LoginStatus status) override; |
| 27 | 27 |
| 28 // Overridden from ScreenTrayItem. | 28 // Overridden from ScreenTrayItem. |
| 29 virtual void CreateOrUpdateNotification() override; | 29 void CreateOrUpdateNotification() override; |
| 30 virtual std::string GetNotificationId() override; | 30 std::string GetNotificationId() override; |
| 31 | 31 |
| 32 // Overridden from ScreenShareObserver. | 32 // Overridden from ScreenShareObserver. |
| 33 virtual void OnScreenShareStart( | 33 void OnScreenShareStart(const base::Closure& stop_callback, |
| 34 const base::Closure& stop_callback, | 34 const base::string16& helper_name) override; |
| 35 const base::string16& helper_name) override; | 35 void OnScreenShareStop() override; |
| 36 virtual void OnScreenShareStop() override; | |
| 37 | 36 |
| 38 base::string16 helper_name_; | 37 base::string16 helper_name_; |
| 39 | 38 |
| 40 DISALLOW_COPY_AND_ASSIGN(ScreenShareTrayItem); | 39 DISALLOW_COPY_AND_ASSIGN(ScreenShareTrayItem); |
| 41 }; | 40 }; |
| 42 | 41 |
| 43 } // namespace ash | 42 } // namespace ash |
| 44 | 43 |
| 45 #endif // ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_ | 44 #endif // ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_ |
| OLD | NEW |