| 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() {
|
|
|