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
3 // found in the LICENSE file.
5 #ifndef ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_
6 #define ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_
8 #include "ash/system/chromeos/screen_security/screen_share_observer.h"
9 #include "ash/system/chromeos/screen_security/screen_tray_item.h"
17 class ASH_EXPORT ScreenShareTrayItem
: public ScreenTrayItem
,
18 public ScreenShareObserver
{
20 explicit ScreenShareTrayItem(SystemTray
* system_tray
);
21 ~ScreenShareTrayItem() override
;
24 // Overridden from SystemTrayItem.
25 views::View
* CreateTrayView(user::LoginStatus status
) override
;
26 views::View
* CreateDefaultView(user::LoginStatus status
) override
;
28 // Overridden from ScreenTrayItem.
29 void CreateOrUpdateNotification() override
;
30 std::string
GetNotificationId() override
;
32 // Overridden from ScreenShareObserver.
33 void OnScreenShareStart(const base::Closure
& stop_callback
,
34 const base::string16
& helper_name
) override
;
35 void OnScreenShareStop() override
;
37 base::string16 helper_name_
;
39 DISALLOW_COPY_AND_ASSIGN(ScreenShareTrayItem
);
44 #endif // ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_