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

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

Issue 2048443002: ABANDONED: mash: Move shell delegate interfaces to ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@moveshelfmodel
Patch Set: Created 4 years, 6 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/system/overview/overview_button_tray.h" 5 #include "ash/system/overview/overview_button_tray.h"
6 6
7 #include "ash/common/session/session_state_delegate.h"
7 #include "ash/common/shelf/shelf_types.h" 8 #include "ash/common/shelf/shelf_types.h"
8 #include "ash/common/shelf/wm_shelf_util.h" 9 #include "ash/common/shelf/wm_shelf_util.h"
9 #include "ash/session/session_state_delegate.h"
10 #include "ash/shelf/shelf_util.h" 10 #include "ash/shelf/shelf_util.h"
11 #include "ash/shell.h" 11 #include "ash/shell.h"
12 #include "ash/system/tray/system_tray_delegate.h" 12 #include "ash/system/tray/system_tray_delegate.h"
13 #include "ash/system/tray/tray_utils.h" 13 #include "ash/system/tray/tray_utils.h"
14 #include "ash/wm/maximize_mode/maximize_mode_controller.h" 14 #include "ash/wm/maximize_mode/maximize_mode_controller.h"
15 #include "ash/wm/overview/window_selector_controller.h" 15 #include "ash/wm/overview/window_selector_controller.h"
16 #include "grit/ash_resources.h" 16 #include "grit/ash_resources.h"
17 #include "grit/ash_strings.h" 17 #include "grit/ash_strings.h"
18 #include "ui/base/l10n/l10n_util.h" 18 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/base/resource/resource_bundle.h" 19 #include "ui/base/resource/resource_bundle.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && 133 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() &&
134 session_state_delegate->IsActiveUserSessionStarted() && 134 session_state_delegate->IsActiveUserSessionStarted() &&
135 !session_state_delegate->IsScreenLocked() && 135 !session_state_delegate->IsScreenLocked() &&
136 session_state_delegate->GetSessionState() == 136 session_state_delegate->GetSessionState() ==
137 SessionStateDelegate::SESSION_STATE_ACTIVE && 137 SessionStateDelegate::SESSION_STATE_ACTIVE &&
138 shell->system_tray_delegate()->GetUserLoginStatus() != 138 shell->system_tray_delegate()->GetUserLoginStatus() !=
139 user::LOGGED_IN_KIOSK_APP); 139 user::LOGGED_IN_KIOSK_APP);
140 } 140 }
141 141
142 } // namespace ash 142 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698