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/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_state_delegate.h" | 8 #include "ash/common/session/session_state_delegate.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" |
11 #include "ash/common/wm_shell.h" | 11 #include "ash/common/wm_shell.h" |
12 #include "ash/shell.h" | 12 #include "ash/shell.h" |
13 #include "ash/wm/lock_state_controller.h" | 13 #include "ash/wm/lock_state_controller.h" |
14 #include "base/time/default_tick_clock.h" | 14 #include "base/time/default_tick_clock.h" |
15 #include "chromeos/dbus/dbus_thread_manager.h" | 15 #include "chromeos/dbus/dbus_thread_manager.h" |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 WmShell::Get()->GetSessionStateDelegate(); | 256 WmShell::Get()->GetSessionStateDelegate(); |
257 if (session_state_delegate->ShouldLockScreenAutomatically() && | 257 if (session_state_delegate->ShouldLockScreenAutomatically() && |
258 session_state_delegate->CanLockScreen() && | 258 session_state_delegate->CanLockScreen() && |
259 !session_state_delegate->IsUserSessionBlocked() && | 259 !session_state_delegate->IsUserSessionBlocked() && |
260 !controller_->LockRequested()) { | 260 !controller_->LockRequested()) { |
261 session_state_delegate->LockScreen(); | 261 session_state_delegate->LockScreen(); |
262 } | 262 } |
263 } | 263 } |
264 | 264 |
265 } // namespace ash | 265 } // namespace ash |
OLD | NEW |