diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-08 23:42:22 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-08 23:42:22 +0000 |
commit | 8e2077d2b3b02bb4f936c1c267e40d95912a0d00 (patch) | |
tree | dd4ea24b21fb87a719d850832111c2b612a9ede0 /ipc/ipc_channel_posix_unittest.cc | |
parent | f7e6ca877859bc53f63ab969ebeebc62ed864fdf (diff) | |
download | chromium_src-8e2077d2b3b02bb4f936c1c267e40d95912a0d00.zip chromium_src-8e2077d2b3b02bb4f936c1c267e40d95912a0d00.tar.gz chromium_src-8e2077d2b3b02bb4f936c1c267e40d95912a0d00.tar.bz2 |
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
Diffstat (limited to 'ipc/ipc_channel_posix_unittest.cc')
-rw-r--r-- | ipc/ipc_channel_posix_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_posix_unittest.cc b/ipc/ipc_channel_posix_unittest.cc index 61c21d3..e8856a9 100644 --- a/ipc/ipc_channel_posix_unittest.cc +++ b/ipc/ipc_channel_posix_unittest.cc @@ -177,7 +177,7 @@ void IPCChannelPosixTest::SpinRunLoop(int milliseconds) { // 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 // current run loop on any channel activity. - loop->PostDelayedTask(FROM_HERE, new MessageLoop::QuitTask(), milliseconds); + loop->PostDelayedTask(FROM_HERE, MessageLoop::QuitClosure(), milliseconds); loop->Run(); } |