| Index: ui/aura/root_window_host_x11.cc
|
| diff --git a/ui/aura/root_window_host_x11.cc b/ui/aura/root_window_host_x11.cc
|
| index b8f59297795282a7733382dcc43f52da68bf9ad1..f2f1bf2bc24b9316ea7f53c706de9fcc842ae6ca 100644
|
| --- a/ui/aura/root_window_host_x11.cc
|
| +++ b/ui/aura/root_window_host_x11.cc
|
| @@ -180,7 +180,7 @@ class TouchEventCalibrate : public base::MessagePumpObserver {
|
| right_(0),
|
| top_(0),
|
| bottom_(0) {
|
| - MessageLoopForUI::current()->AddObserver(this);
|
| + base::MessageLoopForUI::current()->AddObserver(this);
|
| #if defined(USE_XI2_MT)
|
| std::vector<std::string> parts;
|
| if (Tokenize(CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| @@ -198,7 +198,7 @@ class TouchEventCalibrate : public base::MessagePumpObserver {
|
| }
|
|
|
| virtual ~TouchEventCalibrate() {
|
| - MessageLoopForUI::current()->RemoveObserver(this);
|
| + base::MessageLoopForUI::current()->RemoveObserver(this);
|
| }
|
|
|
| // Modify the location of the |event|,
|
|
|