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

Unified Diff: ui/events/platform/x11/x11_event_source.cc

Issue 2329323002: Avoid blocking while mapping an X11 window (Closed)
Patch Set: Remove UnmapNotify blocking, simplify visibility Created 4 years, 3 months 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
Index: ui/events/platform/x11/x11_event_source.cc
diff --git a/ui/events/platform/x11/x11_event_source.cc b/ui/events/platform/x11/x11_event_source.cc
index 1923e95fa14dbb8d97d401201129b4d8ad1dc355..a50b79d836f3aa4ffca707ee73196e1c99a3e253 100644
--- a/ui/events/platform/x11/x11_event_source.cc
+++ b/ui/events/platform/x11/x11_event_source.cc
@@ -148,10 +148,6 @@ void X11EventSource::BlockUntilWindowMapped(XID window) {
BlockOnWindowStructureEvent(window, MapNotify);
}
-void X11EventSource::BlockUntilWindowUnmapped(XID window) {
- BlockOnWindowStructureEvent(window, UnmapNotify);
-}
-
Time X11EventSource::GetCurrentServerTime() {
DCHECK(display_);

Powered by Google App Engine
This is Rietveld 408576698