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

Side by Side Diff: ash/common/system/overview/overview_button_tray.cc

Issue 2416253004: ash: Use session_manager::SessionState (Closed)
Patch Set: fix compile Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/common/system/overview/overview_button_tray.h" 5 #include "ash/common/system/overview/overview_button_tray.h"
6 6
7 #include "ash/common/material_design/material_design_controller.h" 7 #include "ash/common/material_design/material_design_controller.h"
8 #include "ash/common/session/session_state_delegate.h" 8 #include "ash/common/session/session_state_delegate.h"
9 #include "ash/common/shelf/shelf_constants.h" 9 #include "ash/common/shelf/shelf_constants.h"
10 #include "ash/common/shelf/wm_shelf_util.h" 10 #include "ash/common/shelf/wm_shelf_util.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 bool OverviewButtonTray::PerformAction(const ui::Event& event) { 71 bool OverviewButtonTray::PerformAction(const ui::Event& event) {
72 WindowSelectorController* controller = 72 WindowSelectorController* controller =
73 WmShell::Get()->window_selector_controller(); 73 WmShell::Get()->window_selector_controller();
74 controller->ToggleOverview(); 74 controller->ToggleOverview();
75 SetDrawBackgroundAsActive(controller->IsSelecting()); 75 SetDrawBackgroundAsActive(controller->IsSelecting());
76 WmShell::Get()->RecordUserMetricsAction(UMA_TRAY_OVERVIEW); 76 WmShell::Get()->RecordUserMetricsAction(UMA_TRAY_OVERVIEW);
77 return true; 77 return true;
78 } 78 }
79 79
80 void OverviewButtonTray::SessionStateChanged( 80 void OverviewButtonTray::SessionStateChanged(SessionState state) {
81 SessionStateDelegate::SessionState state) {
82 UpdateIconVisibility(); 81 UpdateIconVisibility();
83 } 82 }
84 83
85 void OverviewButtonTray::OnMaximizeModeStarted() { 84 void OverviewButtonTray::OnMaximizeModeStarted() {
86 UpdateIconVisibility(); 85 UpdateIconVisibility();
87 } 86 }
88 87
89 void OverviewButtonTray::OnMaximizeModeEnded() { 88 void OverviewButtonTray::OnMaximizeModeEnded() {
90 UpdateIconVisibility(); 89 UpdateIconVisibility();
91 } 90 }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 // not change during transient times in which CanSelect is false. Such as when 136 // not change during transient times in which CanSelect is false. Such as when
138 // a modal dialog is present. 137 // a modal dialog is present.
139 WmShell* shell = WmShell::Get(); 138 WmShell* shell = WmShell::Get();
140 SessionStateDelegate* session_state_delegate = 139 SessionStateDelegate* session_state_delegate =
141 shell->GetSessionStateDelegate(); 140 shell->GetSessionStateDelegate();
142 141
143 SetVisible( 142 SetVisible(
144 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && 143 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() &&
145 session_state_delegate->IsActiveUserSessionStarted() && 144 session_state_delegate->IsActiveUserSessionStarted() &&
146 !session_state_delegate->IsScreenLocked() && 145 !session_state_delegate->IsScreenLocked() &&
147 session_state_delegate->GetSessionState() == 146 session_state_delegate->GetSessionState() == SessionState::ACTIVE &&
148 SessionStateDelegate::SESSION_STATE_ACTIVE &&
149 shell->system_tray_delegate()->GetUserLoginStatus() != 147 shell->system_tray_delegate()->GetUserLoginStatus() !=
150 LoginStatus::KIOSK_APP); 148 LoginStatus::KIOSK_APP);
151 } 149 }
152 150
153 } // namespace ash 151 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698