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

Unified Diff: real_x_connection.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 | « no previous file | screen_locker_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: real_x_connection.cc
diff --git a/real_x_connection.cc b/real_x_connection.cc
index ae11100f0d73e9cc0a90ac295897ab124db4ff78..4a77d1a8ccafb1f4f6ea97c068587b9a872f3540 100644
--- a/real_x_connection.cc
+++ b/real_x_connection.cc
@@ -315,7 +315,7 @@ bool RealXConnection::GrabPointer(XWindow xid,
if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
LOG(WARNING) << "Pointer grab for window " << XidStr(xid)
- << " returned status " << reply->status;
+ << " returned status " << static_cast<int>(reply->status);
return false;
}
return true;
@@ -348,7 +348,7 @@ bool RealXConnection::GrabKeyboard(XWindow xid, XTime timestamp) {
if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
LOG(WARNING) << "Keyboard grab for window " << XidStr(xid)
- << " returned status " << reply->status;
+ << " returned status " << static_cast<int>(reply->status);
return false;
}
return true;
« no previous file with comments | « no previous file | screen_locker_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698