From 1a24da5da18bac1e97ede472e0061568c4b76f26 Mon Sep 17 00:00:00 2001 From: "erg@chromium.org" Date: Tue, 29 May 2012 23:25:38 +0000 Subject: aura/cros: Rename MessagePump{X => AuraX11}. So rename the MessagePumpX, which is an aurax11 only class now to MessagePumpAuraX11 (which also simplifies the gyp files). BUG=129075 TEST=none Review URL: https://chromiumcodereview.appspot.com/10441028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139421 0039d316-1c4b-4281-b951-d872f2087c98 --- ui/aura/root_window_host_linux.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ui/aura/root_window_host_linux.cc') diff --git a/ui/aura/root_window_host_linux.cc b/ui/aura/root_window_host_linux.cc index 17a370ca..1162638 100644 --- a/ui/aura/root_window_host_linux.cc +++ b/ui/aura/root_window_host_linux.cc @@ -13,7 +13,7 @@ #include #include -#include "base/message_pump_x.h" +#include "base/message_pump_aurax11.h" #include "base/stl_util.h" #include "base/stringprintf.h" #include "grit/ui_resources_standard.h" @@ -392,7 +392,7 @@ class RootWindowHostLinux::ImageCursors { RootWindowHostLinux::RootWindowHostLinux(const gfx::Rect& bounds) : root_window_(NULL), - xdisplay_(base::MessagePumpX::GetDefaultXDisplay()), + xdisplay_(base::MessagePumpAuraX11::GetDefaultXDisplay()), xwindow_(0), x_root_window_(DefaultRootWindow(xdisplay_)), current_cursor_(ui::kCursorNull), @@ -962,7 +962,7 @@ RootWindowHost* RootWindowHost::GetForAcceleratedWidget( // static gfx::Size RootWindowHost::GetNativeScreenSize() { - ::Display* xdisplay = base::MessagePumpX::GetDefaultXDisplay(); + ::Display* xdisplay = base::MessagePumpAuraX11::GetDefaultXDisplay(); return gfx::Size(DisplayWidth(xdisplay, 0), DisplayHeight(xdisplay, 0)); } -- cgit v1.1