Commit 8e2077d2 authored by dcheng@chromium.org's avatar dcheng@chromium.org

Removing MessageLoop::QuitTask() from ipc/

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/8885020

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113697 0039d316-1c4b-4281-b951-d872f2087c98
parent f7e6ca87
...@@ -177,7 +177,7 @@ void IPCChannelPosixTest::SpinRunLoop(int milliseconds) { ...@@ -177,7 +177,7 @@ void IPCChannelPosixTest::SpinRunLoop(int milliseconds) {
// in the case of a bad test. Usually, the run loop will quit sooner than // in the case of a bad test. Usually, the run loop will quit sooner than
// that because all tests use a IPCChannelPosixTestListener which quits the // that because all tests use a IPCChannelPosixTestListener which quits the
// current run loop on any channel activity. // current run loop on any channel activity.
loop->PostDelayedTask(FROM_HERE, new MessageLoop::QuitTask(), milliseconds); loop->PostDelayedTask(FROM_HERE, MessageLoop::QuitClosure(), milliseconds);
loop->Run(); loop->Run();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment