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

Unified Diff: jingle/glue/task_pump.cc

Issue 14307021: jingle: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
Index: jingle/glue/task_pump.cc
diff --git a/jingle/glue/task_pump.cc b/jingle/glue/task_pump.cc
index e2c305bed09fcae2dbebaf2b84fa1dd297c39638..edea317085a2be9af2c4089e3af29dd91b171b52 100644
--- a/jingle/glue/task_pump.cc
+++ b/jingle/glue/task_pump.cc
@@ -20,7 +20,7 @@ TaskPump::~TaskPump() {
void TaskPump::WakeTasks() {
DCHECK(CalledOnValidThread());
if (!stopped_ && !posted_wake_) {
- MessageLoop* current_message_loop = MessageLoop::current();
+ base::MessageLoop* current_message_loop = base::MessageLoop::current();
CHECK(current_message_loop);
// Do the requested wake up.
current_message_loop->PostTask(

Powered by Google App Engine
This is Rietveld 408576698