| Index: ui/aura/x11_atom_cache.cc
|
| diff --git a/ui/aura/x11_atom_cache.cc b/ui/aura/x11_atom_cache.cc
|
| index 542266f4e8c997dc3a305408c80e2385ceba441c..9da1e529e5de5c932899456d4e04b3e57796489f 100644
|
| --- a/ui/aura/x11_atom_cache.cc
|
| +++ b/ui/aura/x11_atom_cache.cc
|
| @@ -6,8 +6,8 @@
|
|
|
| #include <X11/Xatom.h>
|
|
|
| +#include "base/message_pump_aurax11.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "base/message_pump_x.h"
|
|
|
| namespace aura {
|
|
|
| @@ -20,7 +20,7 @@ X11AtomCache::X11AtomCache(Display* xdisplay, const char** to_cache)
|
| scoped_array< ::Atom> cached_atoms(new ::Atom[cache_count]);
|
|
|
| // Grab all the atoms we need now to minimize roundtrips to the X11 server.
|
| - XInternAtoms(base::MessagePumpX::GetDefaultXDisplay(),
|
| + XInternAtoms(base::MessagePumpAuraX11::GetDefaultXDisplay(),
|
| const_cast<char**>(to_cache), cache_count, False,
|
| cached_atoms.get());
|
|
|
|
|