| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ash/system/chromeos/media_security/multi_profile_media_tray_item.h" | |
| 6 | |
| 7 #include "ash/common/ash_view_ids.h" | |
| 8 #include "ash/common/media_delegate.h" | |
| 9 #include "ash/common/session/session_state_delegate.h" | |
| 10 #include "ash/common/system/chromeos/media_security/media_capture_observer.h" | |
| 11 #include "ash/common/system/tray/system_tray_notifier.h" | |
| 12 #include "ash/common/system/tray/tray_item_view.h" | |
| 13 #include "ash/common/wm_shell.h" | |
| 14 #include "grit/ash_resources.h" | |
| 15 #include "ui/base/resource/resource_bundle.h" | |
| 16 #include "ui/views/controls/image_view.h" | |
| 17 #include "ui/views/layout/fill_layout.h" | |
| 18 | |
| 19 namespace ash { | |
| 20 namespace tray { | |
| 21 | |
| 22 class MultiProfileMediaTrayView : public TrayItemView, | |
| 23 public MediaCaptureObserver { | |
| 24 public: | |
| 25 explicit MultiProfileMediaTrayView(SystemTrayItem* system_tray_item) | |
| 26 : TrayItemView(system_tray_item) { | |
| 27 SetLayoutManager(new views::FillLayout); | |
| 28 views::ImageView* icon = new views::ImageView; | |
| 29 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); | |
| 30 icon->SetImage( | |
| 31 bundle.GetImageNamed(IDR_AURA_UBER_TRAY_RECORDING).ToImageSkia()); | |
| 32 AddChildView(icon); | |
| 33 OnMediaCaptureChanged(); | |
| 34 WmShell::Get()->system_tray_notifier()->AddMediaCaptureObserver(this); | |
| 35 set_id(VIEW_ID_MEDIA_TRAY_VIEW); | |
| 36 } | |
| 37 | |
| 38 ~MultiProfileMediaTrayView() override { | |
| 39 WmShell::Get()->system_tray_notifier()->RemoveMediaCaptureObserver(this); | |
| 40 } | |
| 41 | |
| 42 // MediaCaptureObserver: | |
| 43 void OnMediaCaptureChanged() override { | |
| 44 MediaDelegate* media_delegate = WmShell::Get()->media_delegate(); | |
| 45 SessionStateDelegate* session_state_delegate = | |
| 46 WmShell::Get()->GetSessionStateDelegate(); | |
| 47 // The user at 0 is the current desktop user. | |
| 48 for (UserIndex index = 1; | |
| 49 index < session_state_delegate->NumberOfLoggedInUsers(); ++index) { | |
| 50 if (media_delegate->GetMediaCaptureState(index) != MEDIA_CAPTURE_NONE) { | |
| 51 SetVisible(true); | |
| 52 return; | |
| 53 } | |
| 54 } | |
| 55 SetVisible(false); | |
| 56 } | |
| 57 | |
| 58 private: | |
| 59 DISALLOW_COPY_AND_ASSIGN(MultiProfileMediaTrayView); | |
| 60 }; | |
| 61 | |
| 62 } // namespace tray | |
| 63 | |
| 64 MultiProfileMediaTrayItem::MultiProfileMediaTrayItem(SystemTray* system_tray) | |
| 65 : SystemTrayItem(system_tray), tray_view_(NULL) {} | |
| 66 | |
| 67 MultiProfileMediaTrayItem::~MultiProfileMediaTrayItem() {} | |
| 68 | |
| 69 views::View* MultiProfileMediaTrayItem::CreateTrayView(LoginStatus status) { | |
| 70 tray_view_ = new tray::MultiProfileMediaTrayView(this); | |
| 71 return tray_view_; | |
| 72 } | |
| 73 | |
| 74 void MultiProfileMediaTrayItem::DestroyTrayView() { | |
| 75 tray_view_ = NULL; | |
| 76 } | |
| 77 | |
| 78 } // namespace ash | |
| OLD | NEW |