Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / ash / system / chromeos / screen_security / screen_share_tray_item.h
blobd8d8f1e37c70d73bd73c3f50a059e4c7e8efee9c
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"
11 namespace views {
12 class View;
15 namespace ash {
17 class ASH_EXPORT ScreenShareTrayItem : public ScreenTrayItem,
18 public ScreenShareObserver {
19 public:
20 explicit ScreenShareTrayItem(SystemTray* system_tray);
21 virtual ~ScreenShareTrayItem();
23 private:
24 // Overridden from SystemTrayItem.
25 virtual views::View* CreateTrayView(user::LoginStatus status) OVERRIDE;
26 virtual views::View* CreateDefaultView(user::LoginStatus status) OVERRIDE;
28 // Overridden from ScreenTrayItem.
29 virtual void CreateOrUpdateNotification() OVERRIDE;
30 virtual std::string GetNotificationId() OVERRIDE;
32 // Overridden from ScreenShareObserver.
33 virtual void OnScreenShareStart(
34 const base::Closure& stop_callback,
35 const base::string16& helper_name) OVERRIDE;
36 virtual void OnScreenShareStop() OVERRIDE;
38 base::string16 helper_name_;
40 DISALLOW_COPY_AND_ASSIGN(ScreenShareTrayItem);
43 } // namespace ash
45 #endif // ASH_SYSTEM_CHROMEOS_SCREEN_SHARE_SCREEN_SHARE_TRAY_ITEM_H_