Do not use the new message pump for TOUCH_UI yet.
It isn't quite ready.
BUG=none
TEST=build and run chrome, can type in the omnibox again
Review URL: http://codereview.chromium.org/4425001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64975 0039d316-1c4b-4281-b951-d872f2087c98
CrOS-Libchrome-Original-Commit: f9c8d93fa05d3bfa3bac20d60dfef489e3d2fbf7
diff --git a/base/message_loop.cc b/base/message_loop.cc
index 4bc81d3..b20e6b6 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -138,7 +138,8 @@
#define MESSAGE_PUMP_UI base::MessagePumpMac::Create()
#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
#elif defined(TOUCH_UI)
-#define MESSAGE_PUMP_UI new base::MessagePumpGlibX()
+// TODO(sadrul): enable the new message pump when ready
+#define MESSAGE_PUMP_UI new base::MessagePumpForUI()
#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
#elif defined(OS_POSIX) // POSIX but not MACOSX.
#define MESSAGE_PUMP_UI new base::MessagePumpForUI()