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

Unified Diff: ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc

Issue 1162883003: Fix Z-order for a bubble when it appears for inactive window. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix CrOS Created 5 years, 7 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/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
diff --git a/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc b/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
index 69c5b2f44a8f567170a4288df8c584b1ddf81b19..0a9a4ae77a03f5d327d4e77531da4a9a5049deac 100644
--- a/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
+++ b/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
@@ -413,6 +413,9 @@ void DesktopWindowTreeHostX11::SetSize(const gfx::Size& requested_size) {
}
}
+void DesktopWindowTreeHostX11::StackAbove(aura::Window* window) {
+}
sky 2015/06/02 16:32:57 Is it not possible to implement this on X?
vasilii 2015/06/03 13:47:38 The bubble isn't an X window. I think it's doable
+
void DesktopWindowTreeHostX11::StackAtTop() {
XRaiseWindow(xdisplay_, xwindow_);
}

Powered by Google App Engine
This is Rietveld 408576698