| 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/tray/media_security/multi_profile_media_tray_item.h" | |
| 6 | |
| 7 #include "ash/ash_view_ids.h" | |
| 8 #include "ash/common/session/session_state_delegate.h" | |
| 9 #include "ash/common/system/tray/tray_item_view.h" | |
| 10 #include "ash/media_delegate.h" | |
| 11 #include "ash/shell.h" | |
| 12 #include "ash/system/tray/media_security/media_capture_observer.h" | |
| 13 #include "ash/system/tray/system_tray_notifier.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 Shell::GetInstance()->system_tray_notifier()->AddMediaCaptureObserver(this); | |
| 35 set_id(VIEW_ID_MEDIA_TRAY_VIEW); | |
| 36 } | |
| 37 | |
| 38 ~MultiProfileMediaTrayView() override { | |
| 39 Shell::GetInstance()->system_tray_notifier()->RemoveMediaCaptureObserver( | |
| 40 this); | |
| 41 } | |
| 42 | |
| 43 // MediaCaptureObserver: | |
| 44 void OnMediaCaptureChanged() override { | |
| 45 MediaDelegate* media_delegate = Shell::GetInstance()->media_delegate(); | |
| 46 SessionStateDelegate* session_state_delegate = | |
| 47 Shell::GetInstance()->session_state_delegate(); | |
| 48 // The user at 0 is the current desktop user. | |
| 49 for (UserIndex index = 1; | |
| 50 index < session_state_delegate->NumberOfLoggedInUsers(); ++index) { | |
| 51 if (media_delegate->GetMediaCaptureState(index) != MEDIA_CAPTURE_NONE) { | |
| 52 SetVisible(true); | |
| 53 return; | |
| 54 } | |
| 55 } | |
| 56 SetVisible(false); | |
| 57 } | |
| 58 | |
| 59 private: | |
| 60 DISALLOW_COPY_AND_ASSIGN(MultiProfileMediaTrayView); | |
| 61 }; | |
| 62 | |
| 63 } // namespace tray | |
| 64 | |
| 65 MultiProfileMediaTrayItem::MultiProfileMediaTrayItem(SystemTray* system_tray) | |
| 66 : SystemTrayItem(system_tray), tray_view_(NULL) { | |
| 67 } | |
| 68 | |
| 69 MultiProfileMediaTrayItem::~MultiProfileMediaTrayItem() { | |
| 70 } | |
| 71 | |
| 72 views::View* MultiProfileMediaTrayItem::CreateTrayView(LoginStatus status) { | |
| 73 tray_view_ = new tray::MultiProfileMediaTrayView(this); | |
| 74 return tray_view_; | |
| 75 } | |
| 76 | |
| 77 void MultiProfileMediaTrayItem::DestroyTrayView() { | |
| 78 tray_view_ = NULL; | |
| 79 } | |
| 80 | |
| 81 } // namespace ash | |
| OLD | NEW |