OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/chromeos/power/tablet_power_button_controller.h" | 5 #include "ash/system/chromeos/power/tablet_power_button_controller.h" |
6 | 6 |
7 #include "ash/common/accessibility_delegate.h" | 7 #include "ash/common/accessibility_delegate.h" |
8 #include "ash/common/session/session_controller.h" | 8 #include "ash/common/session/session_controller.h" |
9 #include "ash/common/shell_delegate.h" | 9 #include "ash/common/shell_delegate.h" |
10 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 10 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 : kShutdownWhenScreenOnTimeoutMs); | 245 : kShutdownWhenScreenOnTimeoutMs); |
246 shutdown_timer_.Start(FROM_HERE, timeout, this, | 246 shutdown_timer_.Start(FROM_HERE, timeout, this, |
247 &TabletPowerButtonController::OnShutdownTimeout); | 247 &TabletPowerButtonController::OnShutdownTimeout); |
248 } | 248 } |
249 | 249 |
250 void TabletPowerButtonController::OnShutdownTimeout() { | 250 void TabletPowerButtonController::OnShutdownTimeout() { |
251 controller_->StartShutdownAnimation(); | 251 controller_->StartShutdownAnimation(); |
252 } | 252 } |
253 | 253 |
254 void TabletPowerButtonController::LockScreenIfRequired() { | 254 void TabletPowerButtonController::LockScreenIfRequired() { |
255 SessionController* session_controller = WmShell::Get()->session_controller(); | 255 SessionController* session_controller = Shell::Get()->session_controller(); |
256 if (session_controller->ShouldLockScreenAutomatically() && | 256 if (session_controller->ShouldLockScreenAutomatically() && |
257 session_controller->CanLockScreen() && | 257 session_controller->CanLockScreen() && |
258 !session_controller->IsUserSessionBlocked() && | 258 !session_controller->IsUserSessionBlocked() && |
259 !controller_->LockRequested()) { | 259 !controller_->LockRequested()) { |
260 session_controller->LockScreen(); | 260 session_controller->LockScreen(); |
261 } | 261 } |
262 } | 262 } |
263 | 263 |
264 } // namespace ash | 264 } // namespace ash |
OLD | NEW |