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

Unified Diff: window_manager.cc

Issue 6011011: wm: Fade screen on signout. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/window_manager.git@master
Patch Set: apply review feedback Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « window_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: window_manager.cc
diff --git a/window_manager.cc b/window_manager.cc
index 676661d7fc4d0452c7b6053171ce3dfb7dad4e40..e13439393628a90c23bcc9fc9279151f2a0ba30b 100644
--- a/window_manager.cc
+++ b/window_manager.cc
@@ -900,10 +900,10 @@ void WindowManager::DestroyLoginController() {
this, &WindowManager::DestroyLoginControllerInternal));
}
-bool WindowManager::IsShuttingDown() const {
+bool WindowManager::IsSessionEnding() const {
if (!screen_locker_handler_.get())
return false;
- return screen_locker_handler_->shutting_down();
+ return screen_locker_handler_->session_ending();
}
bool WindowManager::GetManagerSelection(
@@ -1647,14 +1647,15 @@ void WindowManager::HandleEnterNotify(const XEnterWindowEvent& e) {
}
void WindowManager::HandleKeyPress(const XKeyEvent& e) {
- // We grab the keyboard while shutting down; ignore any events that we get.
- if (IsShuttingDown())
+ // We grab the keyboard while shutting down or signing out; ignore any events
+ // that we get.
+ if (IsSessionEnding())
return;
key_bindings_->HandleKeyPress(e.keycode, e.state, e.time);
}
void WindowManager::HandleKeyRelease(const XKeyEvent& e) {
- if (IsShuttingDown())
+ if (IsSessionEnding())
return;
key_bindings_->HandleKeyRelease(e.keycode, e.state, e.time);
}
« no previous file with comments | « window_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698