summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbryeung@google.com <bryeung@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 22:11:41 +0000
committerbryeung@google.com <bryeung@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 22:11:41 +0000
commitf9c8d93fa05d3bfa3bac20d60dfef489e3d2fbf7 (patch)
tree44d62f8a7feefd694fd696f6a1fa178623976d5a
parent15d53df08758ee3b35a08cd058b3b57bfddba227 (diff)
downloadchromium_src-f9c8d93fa05d3bfa3bac20d60dfef489e3d2fbf7.zip
chromium_src-f9c8d93fa05d3bfa3bac20d60dfef489e3d2fbf7.tar.gz
chromium_src-f9c8d93fa05d3bfa3bac20d60dfef489e3d2fbf7.tar.bz2
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
-rw-r--r--base/message_loop.cc3
1 files changed, 2 insertions, 1 deletions
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 @@ MessageLoop::MessageLoop(Type type)
#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()