Revert "Reland c91b178b07b0d - Delete dead signin code (SigninGlobalError)"
[chromium-blink-merge.git] / ash / wm / overview / window_selector_controller.cc
blob73b9c148146c1129afb2de9ddd2c4f98de5ff4cc
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 #include "ash/wm/overview/window_selector_controller.h"
7 #include <vector>
9 #include "ash/metrics/user_metrics_recorder.h"
10 #include "ash/root_window_controller.h"
11 #include "ash/session/session_state_delegate.h"
12 #include "ash/shell.h"
13 #include "ash/system/tray/system_tray_delegate.h"
14 #include "ash/wm/mru_window_tracker.h"
15 #include "ash/wm/overview/window_selector.h"
16 #include "ash/wm/window_state.h"
17 #include "ash/wm/window_util.h"
18 #include "base/metrics/histogram.h"
19 #include "ui/aura/window.h"
21 namespace ash {
23 WindowSelectorController::WindowSelectorController() {
26 WindowSelectorController::~WindowSelectorController() {
29 // static
30 bool WindowSelectorController::CanSelect() {
31 // Don't allow a window overview if the screen is locked or a modal dialog is
32 // open or running in kiosk app session.
33 return Shell::GetInstance()->session_state_delegate()->
34 IsActiveUserSessionStarted() &&
35 !Shell::GetInstance()->session_state_delegate()->IsScreenLocked() &&
36 !Shell::GetInstance()->IsSystemModalWindowOpen() &&
37 Shell::GetInstance()->system_tray_delegate()->GetUserLoginStatus() !=
38 user::LOGGED_IN_KIOSK_APP;
41 void WindowSelectorController::ToggleOverview() {
42 if (IsSelecting()) {
43 OnSelectionEnded();
44 } else {
45 // Don't start overview if window selection is not allowed.
46 if (!CanSelect())
47 return;
49 aura::Window::Windows windows =
50 ash::Shell::GetInstance()->mru_window_tracker()->BuildMruWindowList();
51 auto end =
52 std::remove_if(windows.begin(), windows.end(),
53 std::not1(std::ptr_fun(&WindowSelector::IsSelectable)));
54 windows.resize(end - windows.begin());
56 // Don't enter overview mode with no windows.
57 if (windows.empty())
58 return;
60 Shell::GetInstance()->OnOverviewModeStarting();
61 window_selector_.reset(new WindowSelector(this));
62 window_selector_->Init(windows);
63 OnSelectionStarted();
67 bool WindowSelectorController::IsSelecting() {
68 return window_selector_.get() != NULL;
71 bool WindowSelectorController::IsRestoringMinimizedWindows() const {
72 return window_selector_.get() != NULL &&
73 window_selector_->restoring_minimized_windows();
76 // TODO(flackr): Make WindowSelectorController observe the activation of
77 // windows, so we can remove WindowSelectorDelegate.
78 void WindowSelectorController::OnSelectionEnded() {
79 window_selector_->Shutdown();
80 window_selector_.reset();
81 last_selection_time_ = base::Time::Now();
82 Shell::GetInstance()->OnOverviewModeEnded();
85 void WindowSelectorController::OnSelectionStarted() {
86 if (!last_selection_time_.is_null()) {
87 UMA_HISTOGRAM_LONG_TIMES(
88 "Ash.WindowSelector.TimeBetweenUse",
89 base::Time::Now() - last_selection_time_);
93 } // namespace ash