Chromium Code Reviews| 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/system/overview/overview_button_tray.h" | 5 #include "ash/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/shelf_types.h" | 10 #include "ash/common/shelf/shelf_types.h" |
| 11 #include "ash/common/shelf/wm_shelf_util.h" | 11 #include "ash/common/shelf/wm_shelf_util.h" |
| 12 #include "ash/common/system/tray/system_tray_delegate.h" | 12 #include "ash/common/system/tray/system_tray_delegate.h" |
| 13 #include "ash/common/system/tray/tray_constants.h" | 13 #include "ash/common/system/tray/tray_constants.h" |
| 14 #include "ash/common/system/tray/tray_utils.h" | 14 #include "ash/common/system/tray/tray_utils.h" |
| 15 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 15 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
| 16 #include "ash/common/wm/overview/window_selector_controller.h" | 16 #include "ash/common/wm/overview/window_selector_controller.h" |
| 17 #include "ash/common/wm_shell.h" | 17 #include "ash/common/wm_shell.h" |
| 18 #include "ash/shell.h" | |
|
James Cook
2016/07/01 20:09:09
Hooray for another removal of shell.h!
| |
| 19 #include "grit/ash_resources.h" | 18 #include "grit/ash_resources.h" |
| 20 #include "grit/ash_strings.h" | 19 #include "grit/ash_strings.h" |
| 21 #include "ui/base/l10n/l10n_util.h" | 20 #include "ui/base/l10n/l10n_util.h" |
| 22 #include "ui/base/resource/resource_bundle.h" | 21 #include "ui/base/resource/resource_bundle.h" |
| 23 #include "ui/gfx/paint_vector_icon.h" | 22 #include "ui/gfx/paint_vector_icon.h" |
| 24 #include "ui/gfx/vector_icons_public.h" | 23 #include "ui/gfx/vector_icons_public.h" |
| 25 #include "ui/views/border.h" | 24 #include "ui/views/border.h" |
| 26 #include "ui/views/controls/image_view.h" | 25 #include "ui/views/controls/image_view.h" |
| 27 | 26 |
| 28 namespace { | 27 namespace { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 133 kVerticalShelfVerticalPadding, kVerticalShelfHorizontalPadding)); | 132 kVerticalShelfVerticalPadding, kVerticalShelfHorizontalPadding)); |
| 134 } | 133 } |
| 135 } | 134 } |
| 136 } | 135 } |
| 137 | 136 |
| 138 void OverviewButtonTray::UpdateIconVisibility() { | 137 void OverviewButtonTray::UpdateIconVisibility() { |
| 139 // The visibility of the OverviewButtonTray has diverge from | 138 // The visibility of the OverviewButtonTray has diverge from |
| 140 // WindowSelectorController::CanSelect. The visibility of the button should | 139 // WindowSelectorController::CanSelect. The visibility of the button should |
| 141 // not change during transient times in which CanSelect is false. Such as when | 140 // not change during transient times in which CanSelect is false. Such as when |
| 142 // a modal dialog is present. | 141 // a modal dialog is present. |
| 143 Shell* shell = Shell::GetInstance(); | 142 WmShell* shell = WmShell::Get(); |
| 144 SessionStateDelegate* session_state_delegate = | 143 SessionStateDelegate* session_state_delegate = |
| 145 WmShell::Get()->GetSessionStateDelegate(); | 144 shell->GetSessionStateDelegate(); |
| 146 | 145 |
| 147 SetVisible( | 146 SetVisible( |
| 148 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && | 147 shell->maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled() && |
| 149 session_state_delegate->IsActiveUserSessionStarted() && | 148 session_state_delegate->IsActiveUserSessionStarted() && |
| 150 !session_state_delegate->IsScreenLocked() && | 149 !session_state_delegate->IsScreenLocked() && |
| 151 session_state_delegate->GetSessionState() == | 150 session_state_delegate->GetSessionState() == |
| 152 SessionStateDelegate::SESSION_STATE_ACTIVE && | 151 SessionStateDelegate::SESSION_STATE_ACTIVE && |
| 153 WmShell::Get()->system_tray_delegate()->GetUserLoginStatus() != | 152 shell->system_tray_delegate()->GetUserLoginStatus() != |
| 154 LoginStatus::KIOSK_APP); | 153 LoginStatus::KIOSK_APP); |
| 155 } | 154 } |
| 156 | 155 |
| 157 } // namespace ash | 156 } // namespace ash |
| OLD | NEW |