| OLD | NEW |
| 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/session/session_state_delegate.h" | 7 #include "ash/common/session/session_state_delegate.h" |
| 8 #include "ash/common/shelf/shelf_constants.h" | 8 #include "ash/common/shelf/shelf_constants.h" |
| 9 #include "ash/common/system/tray/system_tray_delegate.h" | 9 #include "ash/common/system/tray/system_tray_delegate.h" |
| 10 #include "ash/common/system/tray/tray_constants.h" | 10 #include "ash/common/system/tray/tray_constants.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 WmShell* shell = WmShell::Get(); | 112 WmShell* shell = WmShell::Get(); |
| 113 SessionStateDelegate* session_state_delegate = | 113 SessionStateDelegate* session_state_delegate = |
| 114 shell->GetSessionStateDelegate(); | 114 shell->GetSessionStateDelegate(); |
| 115 | 115 |
| 116 SetVisible( | 116 SetVisible( |
| 117 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && | 117 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && |
| 118 session_state_delegate->IsActiveUserSessionStarted() && | 118 session_state_delegate->IsActiveUserSessionStarted() && |
| 119 !session_state_delegate->IsScreenLocked() && | 119 !session_state_delegate->IsScreenLocked() && |
| 120 session_state_delegate->GetSessionState() == | 120 session_state_delegate->GetSessionState() == |
| 121 session_manager::SessionState::ACTIVE && | 121 session_manager::SessionState::ACTIVE && |
| 122 shell->system_tray_delegate()->GetUserLoginStatus() != | 122 Shell::Get()->system_tray_delegate()->GetUserLoginStatus() != |
| 123 LoginStatus::KIOSK_APP && | 123 LoginStatus::KIOSK_APP && |
| 124 shell->system_tray_delegate()->GetUserLoginStatus() != | 124 Shell::Get()->system_tray_delegate()->GetUserLoginStatus() != |
| 125 LoginStatus::ARC_KIOSK_APP); | 125 LoginStatus::ARC_KIOSK_APP); |
| 126 } | 126 } |
| 127 | 127 |
| 128 } // namespace ash | 128 } // namespace ash |
| OLD | NEW |