summaryrefslogtreecommitdiffstats
path: root/remoting/jingle_glue
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-09 04:02:56 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-09 04:02:56 +0000
commitb9a514dd93b20f8888233a8e104f36d876a42097 (patch)
tree0a11c621cff2567c7adb414b07faa64d1ea8e249 /remoting/jingle_glue
parent678105016404f743786e5da50be61d2e8a8be019 (diff)
downloadchromium_src-b9a514dd93b20f8888233a8e104f36d876a42097.zip
chromium_src-b9a514dd93b20f8888233a8e104f36d876a42097.tar.gz
chromium_src-b9a514dd93b20f8888233a8e104f36d876a42097.tar.bz2
Removing MessageLoop::QuitTask() from remoting/
base/task.h is going away and being replaced by base/bind.h and base/callback.h. This CL was automatically generated by sed. BUG=none TEST=none Review URL: http://codereview.chromium.org/8889024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113752 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/jingle_glue')
-rw-r--r--remoting/jingle_glue/jingle_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/jingle_glue/jingle_thread.cc b/remoting/jingle_glue/jingle_thread.cc
index 1999506..d31857e 100644
--- a/remoting/jingle_glue/jingle_thread.cc
+++ b/remoting/jingle_glue/jingle_thread.cc
@@ -171,7 +171,7 @@ void JingleThread::Run() {
}
void JingleThread::Stop() {
- message_loop_->PostTask(FROM_HERE, new MessageLoop::QuitTask());
+ message_loop_->PostTask(FROM_HERE, MessageLoop::QuitClosure());
stopped_event_.Wait();
// This will wait until the thread is actually finished.