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

Unified Diff: ui/aura/dispatcher_linux.cc

Issue 10441028: aura/cros: Rename MessagePump{X => AuraX11} and move the atom cache into it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error in file added in the interim Created 8 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
« no previous file with comments | « ui/aura/demo/demo_main.cc ('k') | ui/aura/monitor_change_observer_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/dispatcher_linux.cc
diff --git a/ui/aura/dispatcher_linux.cc b/ui/aura/dispatcher_linux.cc
index 9742052c0f4e25a791f7e86da0b2d7338e264938..a8d327aa37c595c9147bc6c0a7f61e77529369a9 100644
--- a/ui/aura/dispatcher_linux.cc
+++ b/ui/aura/dispatcher_linux.cc
@@ -39,14 +39,14 @@ namespace aura {
DispatcherLinux::DispatcherLinux()
: x_root_window_(
- DefaultRootWindow(base::MessagePumpX::GetDefaultXDisplay())) {
- base::MessagePumpX::SetDefaultDispatcher(this);
+ DefaultRootWindow(base::MessagePumpAuraX11::GetDefaultXDisplay())) {
+ base::MessagePumpAuraX11::SetDefaultDispatcher(this);
MessageLoopForUI::current()->AddObserver(this);
}
DispatcherLinux::~DispatcherLinux() {
MessageLoopForUI::current()->RemoveObserver(this);
- base::MessagePumpX::SetDefaultDispatcher(NULL);
+ base::MessagePumpAuraX11::SetDefaultDispatcher(NULL);
}
void DispatcherLinux::AddDispatcherForWindow(
« no previous file with comments | « ui/aura/demo/demo_main.cc ('k') | ui/aura/monitor_change_observer_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698