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

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

Issue 2630773002: Avoid blocking while mapping an X11 window (Closed)
Patch Set: fix flaky tests Created 3 years, 10 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 9fbfe0d656d166a727423d94a3db02013fdc7aa4..f8bbaeb4d0b2e35173f0d5734d52baf1e7b3ef0e 100644
--- a/ui/events/platform/x11/x11_event_source.cc
+++ b/ui/events/platform/x11/x11_event_source.cc
@@ -149,10 +149,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