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

Unified Diff: chrome/browser/fullscreen_gtk.cc

Issue 23460052: Move XID, XDisplay, GetXDisplay and a few other types to ui/gfx/x/x11_types.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sdf Created 7 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: chrome/browser/fullscreen_gtk.cc
diff --git a/chrome/browser/fullscreen_gtk.cc b/chrome/browser/fullscreen_gtk.cc
index 2835132f1a5e807cefedb96d3a8b8fa32453992e..93994083aa8d9de24d2232f43a0cf9cdb30f9765 100644
--- a/chrome/browser/fullscreen_gtk.cc
+++ b/chrome/browser/fullscreen_gtk.cc
@@ -26,7 +26,7 @@ void EnumerateAllChildWindows(ui::EnumerateWindowsDelegate* delegate,
// to old school enumeration of all X windows.
XID root, parent, *children;
unsigned int num_children;
- int status = XQueryTree(ui::GetXDisplay(), window, &root, &parent,
+ int status = XQueryTree(gfx::GetXDisplay(), window, &root, &parent,
&children, &num_children);
if (status) {
for (long i = static_cast<long>(num_children) - 1; i >= 0; i--)
« no previous file with comments | « chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.cc ('k') | chrome/browser/idle_query_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698