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

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

Issue 2498613003: Add ARC++ kiosk menu items and ability to start kiosk session. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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
« no previous file with comments | « no previous file | ash/common/system/tray/system_tray.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 SessionStateDelegate* session_state_delegate = 145 SessionStateDelegate* session_state_delegate =
146 shell->GetSessionStateDelegate(); 146 shell->GetSessionStateDelegate();
147 147
148 SetVisible( 148 SetVisible(
149 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && 149 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() &&
150 session_state_delegate->IsActiveUserSessionStarted() && 150 session_state_delegate->IsActiveUserSessionStarted() &&
151 !session_state_delegate->IsScreenLocked() && 151 !session_state_delegate->IsScreenLocked() &&
152 session_state_delegate->GetSessionState() == 152 session_state_delegate->GetSessionState() ==
153 session_manager::SessionState::ACTIVE && 153 session_manager::SessionState::ACTIVE &&
154 shell->system_tray_delegate()->GetUserLoginStatus() != 154 shell->system_tray_delegate()->GetUserLoginStatus() !=
155 LoginStatus::KIOSK_APP); 155 LoginStatus::KIOSK_APP &&
156 shell->system_tray_delegate()->GetUserLoginStatus() !=
157 LoginStatus::ARC_KIOSK_APP);
156 } 158 }
157 159
158 } // namespace ash 160 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | ash/common/system/tray/system_tray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698