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

Unified Diff: ui/aura/desktop_host_linux.cc

Issue 8771016: Revert "Add debug message to troubleshoot test failures on aura bot" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/desktop_host_linux.cc
diff --git a/ui/aura/desktop_host_linux.cc b/ui/aura/desktop_host_linux.cc
index 84c599da6772cdb47651ebdfc55375a0d8656b27..edf0b2d3e61c1deba9122db76506f13c8799f8d3 100644
--- a/ui/aura/desktop_host_linux.cc
+++ b/ui/aura/desktop_host_linux.cc
@@ -360,8 +360,6 @@ DesktopHostLinux::~DesktopHostLinux() {
base::MessagePumpDispatcher::DispatchStatus DesktopHostLinux::Dispatch(
XEvent* xev) {
- DLOG(WARNING) << "DispatchEvent:" << xev->type;
-
bool handled = false;
CheckXEventForConsistency(xev);
@@ -590,8 +588,7 @@ void DesktopHostLinux::PostNativeEvent(const base::NativeEvent& native_event) {
default:
break;
}
- Status status = XSendEvent(xdisplay_, xwindow_, False, 0, &xevent);
- DLOG(WARNING) << "PostEvent:" << xevent.type << ", status=" << status;
+ XSendEvent(xdisplay_, xwindow_, False, 0, &xevent);
}
void DesktopHostLinux::WillDestroyCurrentMessageLoop() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698