summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorsadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-16 19:43:30 +0000
committersadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-16 19:43:30 +0000
commit8e6e26f44393af5a3bb297bb05f99052177fca93 (patch)
tree1d6255f0be4d0de0e547f577d3607af08e6f4200 /base
parent6a8515e44d88fcd704dc871d7c07314ceb3323bb (diff)
downloadchromium_src-8e6e26f44393af5a3bb297bb05f99052177fca93.zip
chromium_src-8e6e26f44393af5a3bb297bb05f99052177fca93.tar.gz
chromium_src-8e6e26f44393af5a3bb297bb05f99052177fca93.tar.bz2
touchui: turn on the new message pump.
Many (most?) of the bugs related to the new message pump have been fixed, and it is ready for testing. It's stable enough that it shouldn't block other people's works. BUG=none TEST=none Review URL: http://codereview.chromium.org/5940003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69444 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/message_loop.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/base/message_loop.cc b/base/message_loop.cc
index 58aaa01..4c81806 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -139,8 +139,7 @@ MessageLoop::MessageLoop(Type type)
#define MESSAGE_PUMP_UI base::MessagePumpMac::Create()
#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
#elif defined(TOUCH_UI)
-// TODO(sadrul): enable the new message pump when ready
-#define MESSAGE_PUMP_UI new base::MessagePumpForUI()
+#define MESSAGE_PUMP_UI new base::MessagePumpGlibX()
#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
#elif defined(OS_NACL)
// Currently NaCl doesn't have a UI or an IO MessageLoop.