Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1732)

Unified Diff: ash/system/tray/media_security/multi_profile_media_tray_item_unittest.cc

Issue 253183003: Media indicator for background recording task (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/system/tray/media_security/multi_profile_media_tray_item.cc ('k') | ash/system/tray/system_tray.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/media_security/multi_profile_media_tray_item_unittest.cc
diff --git a/ash/system/tray/media_security/multi_profile_media_tray_item_unittest.cc b/ash/system/tray/media_security/multi_profile_media_tray_item_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1dcfeaa5129e4c1ce1915de2c811a0beeea9adc3
--- /dev/null
+++ b/ash/system/tray/media_security/multi_profile_media_tray_item_unittest.cc
@@ -0,0 +1,58 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ash/system/tray/media_security/multi_profile_media_tray_item.h"
+
+#include "ash/ash_view_ids.h"
+#include "ash/shell.h"
+#include "ash/system/status_area_widget.h"
+#include "ash/system/tray/system_tray.h"
+#include "ash/system/tray/system_tray_bubble.h"
+#include "ash/system/tray/tray_item_view.h"
+#include "ash/test/ash_test_base.h"
+#include "ash/test/test_session_state_delegate.h"
+#include "ash/test/test_shell_delegate.h"
+#include "ui/views/bubble/tray_bubble_view.h"
+
+namespace ash {
+
+typedef test::AshTestBase MultiProfileMediaTrayItemTest;
+
+TEST_F(MultiProfileMediaTrayItemTest, NotifyMediaCaptureChange) {
+ TrayItemView::DisableAnimationsForTest();
+ test::TestShellDelegate* shell_delegate =
+ static_cast<test::TestShellDelegate*>(Shell::GetInstance()->delegate());
+ test::TestSessionStateDelegate* session_state_delegate =
+ static_cast<test::TestSessionStateDelegate*>(
+ Shell::GetInstance()->session_state_delegate());
+ session_state_delegate->set_logged_in_users(2);
+
+ SystemTray* system_tray = Shell::GetInstance()->GetPrimarySystemTray();
+ system_tray->ShowDefaultView(BUBBLE_CREATE_NEW);
+ views::View* in_user_view =
+ system_tray->GetSystemBubble()->bubble_view()->GetViewByID(
+ VIEW_ID_USER_VIEW_MEDIA_INDICATOR);
+
+ StatusAreaWidget* widget = system_tray->status_area_widget();
+ EXPECT_TRUE(widget->GetRootView()->visible());
+ views::View* tray_view =
+ widget->GetRootView()->GetViewByID(VIEW_ID_MEDIA_TRAY_VIEW);
+
+ EXPECT_FALSE(tray_view->visible());
+ EXPECT_FALSE(in_user_view->visible());
+
+ shell_delegate->SetMediaCaptureState(MEDIA_CAPTURE_AUDIO);
+ EXPECT_TRUE(tray_view->visible());
+ EXPECT_TRUE(in_user_view->visible());
+
+ shell_delegate->SetMediaCaptureState(MEDIA_CAPTURE_AUDIO_VIDEO);
+ EXPECT_TRUE(tray_view->visible());
+ EXPECT_TRUE(in_user_view->visible());
+
+ shell_delegate->SetMediaCaptureState(MEDIA_CAPTURE_NONE);
+ EXPECT_FALSE(tray_view->visible());
+ EXPECT_FALSE(in_user_view->visible());
+}
+
+} // namespace ash
« no previous file with comments | « ash/system/tray/media_security/multi_profile_media_tray_item.cc ('k') | ash/system/tray/system_tray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698